Explorar el Código

Cleanup node role tasks

Cleanup some things in openshift_ndoe role.
Michael Gugino hace 7 años
padre
commit
9497ccadc0

+ 4 - 3
roles/openshift_node/tasks/config.yml

@@ -2,9 +2,10 @@
 - name: Install the systemd units
   import_tasks: systemd_units.yml
 
-- name: Pull container images
-  import_tasks: container_images.yml
-  when: openshift_is_containerized | bool
+- name: Install Node system container
+  import_tasks: node_system_container.yml
+  when:
+    - l_is_node_system_container | bool
 
 - file:
     dest: "{{ l2_openshift_node_kubelet_args['config'] }}"

+ 0 - 5
roles/openshift_node/tasks/container_images.yml

@@ -1,5 +0,0 @@
----
-- name: Install Node system container
-  import_tasks: node_system_container.yml
-  when:
-  - l_is_node_system_container | bool

+ 3 - 1
roles/openshift_node/tasks/dnsmasq_install.yml

@@ -11,7 +11,9 @@
     network_manager_active: "{{ True if 'ActiveState=active' in nm_show.stdout else False }}"
 
 - name: Install dnsmasq
-  package: name=dnsmasq state=installed
+  package:
+    name: dnsmasq
+    state: installed
   when: not openshift_is_atomic | bool
   register: result
   until: result is succeeded

+ 0 - 2
roles/openshift_node/tasks/main.yml

@@ -61,8 +61,6 @@
 #### Storage class plugins here ####
 - name: NFS storage plugin configuration
   import_tasks: storage_plugins/nfs.yml
-  tags:
-    - nfs
 
 - name: GlusterFS storage plugin configuration
   import_tasks: storage_plugins/glusterfs.yml

+ 3 - 1
roles/openshift_node/tasks/storage_plugins/ceph.yml

@@ -1,6 +1,8 @@
 ---
 - name: Install Ceph storage plugin dependencies
-  package: name=ceph-common state=present
+  package:
+    name: ceph-common
+    state: present
   when: not openshift_is_atomic | bool
   register: result
   until: result is succeeded

+ 3 - 1
roles/openshift_node/tasks/storage_plugins/glusterfs.yml

@@ -1,6 +1,8 @@
 ---
 - name: Install GlusterFS storage plugin dependencies
-  package: name=glusterfs-fuse state=present
+  package:
+    name: glusterfs-fuse
+    state: present
   when: not openshift_is_atomic | bool
   register: result
   until: result is succeeded

+ 4 - 3
roles/openshift_node/tasks/storage_plugins/nfs.yml

@@ -1,6 +1,8 @@
 ---
 - name: Install NFS storage plugin dependencies
-  package: name=nfs-utils state=present
+  package:
+    name: nfs-utils
+    state: present
   when: not openshift_is_atomic | bool
   register: result
   until: result is succeeded
@@ -40,8 +42,7 @@
 # the previous task when the problem has been addressed in current
 # ansible release.
 - name: Set seboolean to allow nfs storage plugin access from containers (python 3)
-  command: >
-    setsebool -P {{ item.item }} on
+  command: setsebool -P {{ item.item }} on
   when:
   - ansible_selinux
   - ansible_selinux.status == "enabled"