Selaa lähdekoodia

The l_glusterfs_count is a string need to cast to int for comparison.

Matt Bruzek 6 vuotta sitten
vanhempi
commit
9e4a4e1fce
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      roles/openshift_storage_glusterfs/tasks/wait_for_pods.yml

+ 2 - 2
roles/openshift_storage_glusterfs/tasks/wait_for_pods.yml

@@ -9,8 +9,8 @@
   until:
   - "glusterfs_pods_wait.results.results[0]['items'] | count > 0"
   # There must be as many pods with 'Ready' staus  True as there are nodes expecting those pods
-  - "glusterfs_pods_wait.results.results[0]['items'] | lib_utils_oo_collect(attribute='status.conditions') | lib_utils_oo_collect(attribute='status', filters={'type': 'Ready'}) | map('bool') | select | list | count == l_glusterfs_count"
+  - "glusterfs_pods_wait.results.results[0]['items'] | lib_utils_oo_collect(attribute='status.conditions') | lib_utils_oo_collect(attribute='status', filters={'type': 'Ready'}) | map('bool') | select | list | count == l_glusterfs_count | int"
   delay: 10
   retries: "{{ (glusterfs_timeout | int / 10) | int }}"
   vars:
-    l_glusterfs_count: "{{ glusterfs_count | default(glusterfs_nodes | count) | int }}"
+    l_glusterfs_count: "{{ glusterfs_count | default(glusterfs_nodes | count) }}"