From: David Galloway Date: Mon, 28 Jun 2021 21:16:10 +0000 (-0400) Subject: container-host: Install pip too X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F635%2Fhead;p=ceph-cm-ansible.git container-host: Install pip too This was needed on CentOS8 and Ubuntu Focal Jenkins builders. Signed-off-by: David Galloway --- diff --git a/roles/container-host/tasks/container_mirror.yml b/roles/container-host/tasks/container_mirror.yml index 72ced9ab..93e23f83 100644 --- a/roles/container-host/tasks/container_mirror.yml +++ b/roles/container-host/tasks/container_mirror.yml @@ -11,9 +11,11 @@ content: "{{ container_mirror_cert }}" with_items: "{{ container_mirror_cert_paths }}" -- name: Ensure git is installed +- name: Ensure installation dependencies are installed package: - name: git + name: + - git + - python-pip state: present tags: - registries-conf-ctl