diff options
author | 2018-03-12 08:44:00 +0000 | |
---|---|---|
committer | 2018-03-12 08:44:00 +0000 | |
commit | 78e1ec95b4b00de6451bbb495ab52f529fdb68ef (patch) | |
tree | 1131d4c28fcf228dda87b3bba1821b4a3c723846 /xci/playbooks/roles/prepare-functest | |
parent | ed1c2d6c009bdf8ec6a75e34a1fdbefe0ce6f7d7 (diff) | |
parent | f76dbbfafcdbc6acf6948f8dee60671211774567 (diff) |
Merge changes from topic 'set-proper-constrains'
* changes:
xci: OSA: Ensure proper constrains are applied to pip installations
xci: Move functest required packages to the functest role
Diffstat (limited to 'xci/playbooks/roles/prepare-functest')
-rw-r--r-- | xci/playbooks/roles/prepare-functest/tasks/main.yml | 26 | ||||
-rw-r--r-- | xci/playbooks/roles/prepare-functest/vars/main.yml | 14 |
2 files changed, 33 insertions, 7 deletions
diff --git a/xci/playbooks/roles/prepare-functest/tasks/main.yml b/xci/playbooks/roles/prepare-functest/tasks/main.yml index 243358fc..2797ce43 100644 --- a/xci/playbooks/roles/prepare-functest/tasks/main.yml +++ b/xci/playbooks/roles/prepare-functest/tasks/main.yml @@ -7,6 +7,25 @@ # which accompanies this distribution, and is available at # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## + +- name: install functest required packages + package: + name: "{{ functest_required_packages[ansible_pkg_mgr] }}" + state: present + +# Docker is needed for functest +- name: Ensure Docker service is started and enabled + service: + name: docker + state: started + enabled: yes + +- name: install functest required pip packages + pip: + name: "{{ functest_required_pip }}" + state: present + extra_args: '-c https://raw.githubusercontent.com/openstack/requirements/{{ requirements_git_install_branch }}/upper-constraints.txt' + - name: check if the gateway was already set shell: "ip a | grep {{ gateway_ip }}" register: gateway_ip_result @@ -27,10 +46,3 @@ src: run-functest.sh.j2 dest: /root/run-functest.sh mode: 0755 - -- name: install required packages - package: - name: "{{ item }}" - state: present - with_items: - - wget diff --git a/xci/playbooks/roles/prepare-functest/vars/main.yml b/xci/playbooks/roles/prepare-functest/vars/main.yml new file mode 100644 index 00000000..3a6c8a4d --- /dev/null +++ b/xci/playbooks/roles/prepare-functest/vars/main.yml @@ -0,0 +1,14 @@ +--- +functest_required_packages: + apt: + - docker.io + - wget + zypper: + - docker + - wget + yum: + - docker + - wget + +functest_required_pip: + - docker-py |