Browse Source

Ensure python2-ruamel-yaml is installed

need to revisit this, currently python2-ruamel-yaml doesn't provide
'python-ruamel-yaml'. It probably should and that should be what we're
installing.
Scott Dodson 8 years ago
parent
commit
ce72b25166

+ 1 - 0
openshift-ansible.spec

@@ -20,6 +20,7 @@ Requires:      tar
 Requires:      openshift-ansible-docs = %{version}-%{release}
 Requires:      java-1.8.0-openjdk-headless
 Requires:      httpd-tools
+Requires:      python-ruamel-yaml
 
 %description
 Openshift and Atomic Enterprise Ansible

+ 5 - 0
roles/lib_openshift/tasks/main.yml

@@ -0,0 +1,5 @@
+---
+- name: lib_openshift ensure python-ruamel-yaml package is on target
+  package:
+    name: python-ruamel-yaml
+    state: present

+ 5 - 0
roles/lib_utils/tasks/main.yml

@@ -0,0 +1,5 @@
+---
+- name: lib_utils ensure python-ruamel-yaml package is on target
+  package:
+    name: python-ruamel-yaml
+    state: present

+ 0 - 4
roles/openshift_logging/tasks/main.yaml

@@ -12,10 +12,6 @@
 
 - debug: msg="Created temp dir {{mktemp.stdout}}"
 
-- name: Ensuring ruamel.yaml package is on target
-  command: yum install -y ruamel.yaml
-  check_mode: no
-
 - name: Copy the admin client config(s)
   command: >
     cp {{ openshift_master_config_dir }}/admin.kubeconfig {{ mktemp.stdout }}/admin.kubeconfig