Install python-pip from local yum repository (#3940)

Add support install python-pip from local yum repository if local yum repository exist.
This commit is contained in:
Anton Patsev 2018-12-27 20:30:59 +06:00 committed by Kubernetes Prow Robot
parent 3ce033995f
commit d4bd08f82e

View file

@ -29,20 +29,36 @@
state: present
when: http_proxy is defined
- name: Install packages requirements for bootstrap
- name: Install libselinux-python and yum-utils for bootstrap
yum:
name: "{{ packages }}"
state: present
vars:
packages:
- libselinux-python
- epel-release
- yum-utils
when:
- not is_atomic
- name: Check python-pip package
yum:
list=python-pip
register: package_python_pip
when:
- not is_atomic
- name: Install epel-release for bootstrap
yum:
name: epel-release
state: present
when:
- not is_atomic
- package_python_pip.results | length != 0
- name: Install pip for bootstrap
yum:
name: python-pip
state: present
when:
- not is_atomic
- package_python_pip.results | length != 0