소스 검색

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 년 전
부모
커밋
695527815b
2개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 0
      roles/openshift_node/tasks/apply_machine_config.yml
  2. 2 1
      roles/openshift_node/tasks/config.yml

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

@@ -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 @@
   delegate_to: localhost
   register: oc_get
   until:
+  - oc_get.stdout is defined
   - oc_get.stdout != ''
   retries: 36
   delay: 5
@@ -50,6 +52,7 @@
   delegate_to: localhost
   register: oc_get
   until:
+  - oc_get.stdout is defined
   - oc_get.stdout != ''
   retries: 36
   delay: 5

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

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