Ensure pip is installed

We need pip and virtualenv for molcule jobs. This was dropped recently
in the base image so we need to handle this ourselves.

Change-Id: Ie5ba86c4d8aa97959d7336886536dc1439ce54bd
This commit is contained in:
Alex Schultz 2020-06-17 12:31:41 -06:00
parent bdf648ff20
commit 19ef86c627
2 changed files with 8 additions and 0 deletions

View File

@ -54,11 +54,13 @@
dest: /etc/yum.repos.d/delorean.repo
- name: Install tripleo-repos package
become: true
package:
name: "python*tripleo-repos"
state: present
- name: Tripleo setup block
become: true
when:
- (ansible_os_family | lower) == 'redhat'
- test_deps_setup_tripleo | bool

View File

@ -18,10 +18,15 @@
path: "{{ ansible_user_dir }}/zuul-output/logs"
state: directory
- name: Ensure pip is available
include_role:
name: ensure-pip
- name: Setup bindep
pip:
name: "bindep"
virtualenv: "{{ ansible_user_dir }}/test-python"
virtualenv_command: "{{ ensure_pip_virtualenv_command }}"
virtualenv_site_packages: true
- name: Run bindep
@ -34,6 +39,7 @@
pip:
requirements: "{{ tripleo_ansible_project_path }}/molecule-requirements.txt"
virtualenv: "{{ ansible_user_dir }}/test-python"
virtualenv_command: "{{ ensure_pip_virtualenv_command }}"
virtualenv_site_packages: true
- name: Display test-python virtualenv package versions