Fix until conditionals to handle failed tasks
@@ -12,6 +12,7 @@
delegate_to: localhost
register: oc_get
until:
+ - oc_get.stdout is defined
- oc_get.stdout != ''
retries: 36
delay: 5
@@ -28,6 +29,7 @@
@@ -50,6 +52,7 @@
@@ -34,7 +34,7 @@
retries: 60
register: result
- - "'status' in result"
+ - result.status is defined
- result.status == 200
- name: Fetch bootstrap ignition file locally
@@ -56,6 +56,7 @@