Browse Source

'Wait for node to be ready' task should check that all vars are defined

Vadim Rutkovsky 6 years ago
parent
commit
5b1635aac4
1 changed files with 4 additions and 1 deletions
  1. 4 1
      roles/openshift_node/tasks/upgrade.yml

+ 4 - 1
roles/openshift_node/tasks/upgrade.yml

@@ -74,8 +74,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