Browse Source

Fix until conditionals to handle failed tasks

If the task fails and does not create the expected result, such as
oc_get.stdout, the task will fail because 'stdout' is not defined.  This
obscures the actual reason the task is failing making it more difficult
to troubleshoot.

This commit ensures consistency for all until: conditionals.
Russell Teague 5 years ago
parent
commit
695527815b

+ 3 - 0
roles/openshift_node/tasks/apply_machine_config.yml

@@ -12,6 +12,7 @@
   delegate_to: localhost
   delegate_to: localhost
   register: oc_get
   register: oc_get
   until:
   until:
+  - oc_get.stdout is defined
   - oc_get.stdout != ''
   - oc_get.stdout != ''
   retries: 36
   retries: 36
   delay: 5
   delay: 5
@@ -28,6 +29,7 @@
   delegate_to: localhost
   delegate_to: localhost
   register: oc_get
   register: oc_get
   until:
   until:
+  - oc_get.stdout is defined
   - oc_get.stdout != ''
   - oc_get.stdout != ''
   retries: 36
   retries: 36
   delay: 5
   delay: 5
@@ -50,6 +52,7 @@
   delegate_to: localhost
   delegate_to: localhost
   register: oc_get
   register: oc_get
   until:
   until:
+  - oc_get.stdout is defined
   - oc_get.stdout != ''
   - oc_get.stdout != ''
   retries: 36
   retries: 36
   delay: 5
   delay: 5

+ 2 - 1
roles/openshift_node/tasks/config.yml

@@ -34,7 +34,7 @@
   retries: 60
   retries: 60
   register: result
   register: result
   until:
   until:
-  - "'status' in result"
+  - result.status is defined
   - result.status == 200
   - result.status == 200
 
 
 - name: Fetch bootstrap ignition file locally
 - name: Fetch bootstrap ignition file locally
@@ -56,6 +56,7 @@
   delegate_to: localhost
   delegate_to: localhost
   register: oc_get
   register: oc_get
   until:
   until:
+  - oc_get.stdout is defined
   - oc_get.stdout != ''
   - oc_get.stdout != ''
   retries: 36
   retries: 36
   delay: 5
   delay: 5