Browse Source

node restart: check that all vars are defined

Vadim Rutkovsky 6 years ago
parent
commit
af326b6ba7
1 changed files with 4 additions and 1 deletions
  1. 4 1
      playbooks/openshift-node/private/restart.yml

+ 4 - 1
playbooks/openshift-node/private/restart.yml

@@ -43,8 +43,11 @@
     until:
     - node_output.results is defined
     - node_output.results.returncode is defined
-    - node_output.results.results is defined
     - node_output.results.returncode == 0
+    - node_output.results.results is defined
+    - node_output.results.results | length > 0
+    - node_output.results.results[0].status is defined
+    - node_output.results.results[0].status.conditions is defined
     - node_output.results.results[0].status.conditions | selectattr('type', 'match', '^Ready$') | map(attribute='status') | join | bool == True
     # Give the node three minutes to come back online.
     retries: 36