We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b542ae8 commit 489e910Copy full SHA for 489e910
defaults/main.yml
@@ -116,6 +116,7 @@ required_rpm_pakcages:
116
- java-1.8.0-openjdk-devel.x86_64
117
- tmux
118
- python3-dns
119
+ - python3-pip
120
- python3-lxml
121
- cargo
122
- lm_sensors
tasks/main.yml
@@ -16,6 +16,13 @@
16
register: pkg_installed
17
changed_when: pkg_installed.stdout == 'yes'
18
19
+- name: Install required python libraries
20
+ become: yes
21
+ become_user: "{{ admin_user }}"
22
+ pip:
23
+ name: openshift
24
+ extra_args: --user
25
+
26
- name: configure shell extras
27
include_tasks: configure_shell.yml
28
when: configure_shell|bool
0 commit comments