ソースを参照

Add check to ensure nodes are ready after scaleup

Russell Teague 5 年 前
コミット
8e4e6273d0

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

@@ -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

+ 14 - 0
roles/openshift_node/tasks/config.yml

@@ -109,3 +109,17 @@
   rescue:
   - fail:
       msg: "Ignition apply failed"
+
+- 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