blob: 0ee1e4471fd08ed1797bb69fcdba9fc14500276a [file] [log] [blame]
peustermd7cbd212017-09-07 08:55:14 +02001# 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
peusterm63a55382016-01-14 16:33:50 +010027- hosts: localhost
peusterm61db5762016-01-14 16:30:04 +010028 tasks:
29 - name: updates apt
30 apt: update_cache=yes
peustermc68c68e2016-01-14 16:57:57 +010031
32 - name: install python-dev
33 apt: pkg=python-dev state=installed
34
peusterm5877ea22016-05-11 13:44:59 +020035 - name: install libffi-dev
36 apt: pkg=libffi-dev state=installed
37
peustermfa042562016-05-11 14:46:32 +020038 - name: install libssl-dev
39 apt: pkg=libssl-dev state=installed
40
peusterm61db5762016-01-14 16:30:04 +010041 - name: install pip
42 apt: pkg=python-pip state=installed
43
stevenvanrossem7d4bfac2016-02-23 10:56:43 +010044 - name: install setuptools
45 pip: name=setuptools state=latest
46
peusterm61db5762016-01-14 16:30:04 +010047 - name: install tabulate
peusterma4edcd72016-03-07 15:53:33 +010048 pip: name=tabulate state=latest
peusterm61db5762016-01-14 16:30:04 +010049
50 - name: install argparse
peusterma4edcd72016-03-07 15:53:33 +010051 pip: name=argparse state=latest
stevenvanrossema29c50c2016-02-16 14:37:44 +010052
53 - name: install networkx
peusterm0911b552017-09-22 08:47:08 +020054 pip: name=networkx version=1.11
stevenvanrossema29c50c2016-02-16 14:37:44 +010055
peusterma1a5ed02016-03-07 15:29:20 +010056 - name: install six
peusterma4edcd72016-03-07 15:53:33 +010057 pip: name=six state=latest
peusterma1a5ed02016-03-07 15:29:20 +010058
stevenvanrossema29c50c2016-02-16 14:37:44 +010059 - name: install ryu
peusterma4edcd72016-03-07 15:53:33 +010060 pip: name=ryu state=latest
stevenvanrossem0e17de22016-02-18 16:22:05 +010061
62 - name: install oslo.config
peusterma4edcd72016-03-07 15:53:33 +010063 pip: name=oslo.config state=latest
cgeoffroy840f1792016-03-03 16:53:52 +010064
65 - name: install pytest
peusterma4edcd72016-03-07 15:53:33 +010066 pip: name=pytest state=latest
peusterme26487b2016-03-08 14:00:21 +010067
68 - name: install Flask
69 pip: name=Flask state=latest
70
71 - name: install flask_restful
72 pip: name=flask_restful state=latest
peusterm795f04f2016-03-24 10:32:18 +010073
74 - name: install requests
75 pip: name=requests state=latest
76
stevenvanrossem9cc73602017-01-27 23:37:29 +010077 - name: install docker
78 pip: name=docker version=2.0.2
stevenvanrossemc6abf132016-04-14 11:15:58 +020079
80 - name: install prometheus_client
81 pip: name=prometheus_client state=latest
82
peustermfa042562016-05-11 14:46:32 +020083 - name: install latest urllib3 (fix error urllib3.connection.match_hostname = match_hostname)
peusterm66ee7ba2017-07-20 13:16:11 +020084 pip: name=urllib3 version=1.21.1
peustermfa042562016-05-11 14:46:32 +020085
peustermc25a4582017-04-27 16:15:11 +020086 - name: install iptc
87 pip: name=python-iptables state=latest
88
stevenvanrossemca164cf2017-05-03 16:26:01 +020089 - name: install ipaddress
90 pip: name=ipaddress state=latest
91
peustermbbe12892017-09-07 13:03:12 +020092 - name: install gevent
93 pip: name=gevent state=latest
94
peustermc6c25ea2017-09-06 15:56:10 +020095 #- name: install urllib
96 # pip: name=urllib state=latest
peustermb668d692017-08-30 09:22:15 +020097
stevenvanrossemc6abf132016-04-14 11:15:58 +020098
99