소스 검색

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

Matt Bruzek 6 년 전
부모
커밋
9e4a4e1fce
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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) }}"