Skip to content
Snippets Groups Projects
Commit d4bd08f8 authored by Anton Patsev's avatar Anton Patsev Committed by Kubernetes Prow Robot
Browse files

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

Add support install python-pip from local yum repository if local yum repository exist.
parent 3ce03399
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment