summaryrefslogtreecommitdiffstats
path: root/roles/openshift_storage_glusterfs
diff options
context:
space:
mode:
authorJose A. Rivera <jarrpa@redhat.com>2017-04-18 14:09:13 -0500
committerJose A. Rivera <jarrpa@redhat.com>2017-04-18 14:09:13 -0500
commitcdca97312294bfff6effeda17df2fa7a9b0f0522 (patch)
treea0ec752bebc6ed713cb398d687e25def49a9fe85 /roles/openshift_storage_glusterfs
parentc5f7ac0c93c3e2138dfaa57a4a58bbd6afb9eb57 (diff)
downloadopenshift-cdca97312294bfff6effeda17df2fa7a9b0f0522.tar.gz
openshift-cdca97312294bfff6effeda17df2fa7a9b0f0522.tar.bz2
openshift-cdca97312294bfff6effeda17df2fa7a9b0f0522.tar.xz
openshift-cdca97312294bfff6effeda17df2fa7a9b0f0522.zip
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>
Diffstat (limited to 'roles/openshift_storage_glusterfs')
-rw-r--r--roles/openshift_storage_glusterfs/tasks/glusterfs_deploy.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/openshift_storage_glusterfs/tasks/glusterfs_deploy.yml b/roles/openshift_storage_glusterfs/tasks/glusterfs_deploy.yml
index 26ca5eebf..2b35e5137 100644
--- a/roles/openshift_storage_glusterfs/tasks/glusterfs_deploy.yml
+++ b/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