Browse Source

GlusterFS: Fix error when groups.glusterfs_registry is undefined.

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

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

@@ -20,12 +20,12 @@
     glusterfs_heketi_wipe: "{{ openshift_storage_glusterfs_registry_heketi_wipe }}"
     glusterfs_heketi_url: "{{ openshift_storage_glusterfs_registry_heketi_url }}"
     glusterfs_heketi_port: "{{ openshift_storage_glusterfs_registry_heketi_port }}"
-    glusterfs_nodes: "{{ groups.glusterfs_registry }}"
+    glusterfs_nodes: "{{ groups.glusterfs_registry | default(groups.glusterfs) }}"
 
 - include: glusterfs_common.yml
   when:
-  - groups.glusterfs_registry | default([]) | count > 0
-  - "'glusterfs' not in groups or groups.glusterfs_registry != groups.glusterfs"
+  - glusterfs_nodes | default([]) | count > 0
+  - "'glusterfs' not in groups or glusterfs_nodes != groups.glusterfs"
 
 - name: Delete pre-existing GlusterFS registry resources
   oc_obj: