Browse Source

GlusterFS: provide default for groups.oo_glusterfs_to_config in with_items

Workaround for the following "as intended"/"won't fix" bug:

https://github.com/ansible/ansible/issues/13598

Signed-off-by: Jose A. Rivera <jarrpa@redhat.com>
Jose A. Rivera 8 years ago
parent
commit
cdca973122
1 changed files with 3 additions and 3 deletions
  1. 3 3
      roles/openshift_storage_glusterfs/tasks/glusterfs_deploy.yml

+ 3 - 3
roles/openshift_storage_glusterfs/tasks/glusterfs_deploy.yml

@@ -29,14 +29,14 @@
     path: /var/lib/glusterd
     state: absent
   delegate_to: "{{ item }}"
-  with_items: "{{ groups.oo_glusterfs_to_config }}"
+  with_items: "{{ groups.oo_glusterfs_to_config | default([]) }}"
   when: openshift_storage_glusterfs_wipe
 
 - name: Get GlusterFS storage devices state
   command: "pvdisplay -C --noheadings -o pv_name,vg_name {% for device in hostvars[item].glusterfs_devices %}{{ device }} {% endfor %}"
   register: devices_info
   delegate_to: "{{ item }}"
-  with_items: "{{ groups.oo_glusterfs_to_config }}"
+  with_items: "{{ groups.oo_glusterfs_to_config | default([]) }}"
   failed_when: False
   when: openshift_storage_glusterfs_wipe
 
@@ -65,7 +65,7 @@
     kind: node
     state: add
     labels: "{{ openshift_storage_glusterfs_nodeselector | oo_dict_to_list_of_dict }}"
-  with_items: "{{ groups.oo_glusterfs_to_config }}"
+  with_items: "{{ groups.oo_glusterfs_to_config | default([]) }}"
   loop_control:
     loop_var: glusterfs_host