blob: e38f747dc1a3d58517c2e7719611e0c19a7f777a [file] [log] [blame]
Rafael Schellenbergaa8823c2019-12-06 15:03:56 +01001# Copyright (c) 2015 SONATA-NFV and Paderborn University
2# ALL RIGHTS RESERVED.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16# Neither the name of the SONATA-NFV, Paderborn University
17# nor the names of its contributors may be used to endorse or promote
18# products derived from this software without specific prior written
19# permission.
20#
21# This work has been performed in the framework of the SONATA project,
22# funded by the European Commission under Grant number 671517 through
23# the Horizon 2020 and 5G-PPP programmes. The authors would like to
24# acknowledge the contributions of their colleagues of the SONATA
25# partner consortium (www.sonata-nfv.eu).
26
27- hosts: localhost
28 tasks:
29 - name: updates apt
30 apt: update_cache=yes
31
32 - name: install python3-dev
33 apt: pkg=python3-dev state=installed
34
35 - name: install libffi-dev
36 apt: pkg=libffi-dev state=installed
37
38 - name: install libssl-dev
39 apt: pkg=libssl-dev state=installed
40
41 - name: install pip3
42 apt: pkg=python3-pip state=installed
43
44 - name: install libevent-dev
45 apt: pkg=libevent-dev state=installed
46
47 - name: install libevent-dev
48 apt: pkg=python-all-dev state=installed
49
50 - name: find pip executable
51 shell: "which pip3"
52 register: pip_path
53
54 - name: install setuptools
55 pip: name=setuptools state=latest executable={{pip_path.stdout}}
56
57 - name: install tabulate
58 pip: name=tabulate state=latest executable={{pip_path.stdout}}
59
60 - name: install argparse
61 pip: name=argparse state=latest executable={{pip_path.stdout}}
62
63 - name: install networkx
64 pip: name=networkx version=1.11 executable={{pip_path.stdout}}
65
66 - name: install six
67 pip: name=six state=latest executable={{pip_path.stdout}}
68
69 - name: install tinyrpc (fixed version to not break ryu)
70 pip: name=tinyrpc version=1.0.3 executable={{pip_path.stdout}}
71
72 - name: install ryu
73 pip: name=ryu state=latest executable={{pip_path.stdout}}
74
75 - name: install oslo.config
76 pip: name=oslo.config state=latest executable={{pip_path.stdout}}
77
78 - name: install pytest
79 pip: name=pytest version=4.6.4 executable={{pip_path.stdout}}
80
81 - name: install Flask
82 pip: name=Flask executable={{pip_path.stdout}}
83
84 - name: install flask_restful
85 pip: name=flask_restful state=latest executable={{pip_path.stdout}}
86
87 - name: install requests
88 pip: name=requests state=latest executable={{pip_path.stdout}}
89
90 - name: install docker
91 pip: name=docker version=2.0.2 executable={{pip_path.stdout}}
92
93 - name: install prometheus_client
94 pip: name=prometheus_client state=latest executable={{pip_path.stdout}}
95
96 - name: install latest urllib3 (fix error urllib3.connection.match_hostname = match_hostname)
97 pip: name=urllib3 version=1.21.1 executable={{pip_path.stdout}}
98
99 - name: install iptc
100 pip: name=python-iptables state=latest executable={{pip_path.stdout}}
101
102 - name: install ipaddress
103 pip: name=ipaddress state=latest executable={{pip_path.stdout}}
104
105 - name: install gevent
106 pip: name=gevent executable={{pip_path.stdout}}
107
108
109
110