|
@@ -72,3 +72,17 @@
|
|
|
- name: Reboot the host and wait for it to come back
|
|
|
reboot:
|
|
|
# reboot_timeout: 600 # default, 10 minutes
|
|
|
+
|
|
|
+- name: Wait for nodes to report ready
|
|
|
+ command: >
|
|
|
+ oc get node {{ item | lower }}
|
|
|
+ --config={{ openshift_node_kubeconfig_path }}
|
|
|
+ --output=jsonpath='{.status.conditions[?(@.type=="Ready")].status}'
|
|
|
+ loop: "{{ ansible_play_batch }}"
|
|
|
+ delegate_to: localhost
|
|
|
+ run_once: true
|
|
|
+ register: oc_get
|
|
|
+ until:
|
|
|
+ - oc_get.stdout == "True"
|
|
|
+ retries: 36
|
|
|
+ delay: 5
|