File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed
roles/version_update_single_node/tasks Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change 55 ansible.builtin.set_fact :
66 retry_count : " {{ 0 if retry_count is undefined else retry_count | int + 1 }}"
77
8- # We might be able to remove this task
9- - name : Pause before checking update status - checks will report FAILED-RETRYING until update COMPLETE/TERMINATED
10- ansible.builtin.wait_for :
11- timeout : 60
12- delegate_to : localhost
13-
148 - name : Check update status - will report FAILED-RETRYING until update COMPLETE/TERMINATED
159 scale_computing.hypercore.version_update_status_info :
1610 register : update_status
17- until : update_status.record.update_status == "COMPLETE" | default(omit) or update_status.record.update_status == "TERMINATING" | default(omit)
11+ until : >-
12+ update_status.record != None and
13+ (
14+ update_status.record.update_status == "COMPLETE" or
15+ update_status.record.update_status == "TERMINATING"
16+ )
1817 retries : 100
1918 delay : 30
2019 ignore_unreachable : true
You can’t perform that action at this time.
0 commit comments