Browse Source

Merge pull request #3422 from mtnbikenc/logging-fix

[openshift_logging] Correct logic test for running pods
Russell Teague 8 years ago
parent
commit
a0247365e7
1 changed files with 3 additions and 3 deletions
  1. 3 3
      roles/openshift_logging/tasks/upgrade_logging.yaml

+ 3 - 3
roles/openshift_logging/tasks/upgrade_logging.yaml

@@ -26,14 +26,14 @@
   loop_control:
     loop_var: object
 
-- name: Wait for pods to stop
+- name: Wait for pods to start
   oc_obj:
     state: list
-    kind: dc
+    kind: pods
     selector: "component=es"
     namespace: "{{openshift_logging_namespace}}"
   register: running_pod
-  until: running_pod.results.results.items[?(@.status.phase == "Running")].metadata.name != ''
+  until: running_pod.results.results[0]['items'] | selectattr('status.phase', 'equalto', 'Running') | map(attribute='metadata.name') | list | length != 0
   retries: 30
   delay: 10