Browse Source

Wait for Openshift APIs to register themselves

Vadim Rutkovsky 6 years ago
parent
commit
3f95338a46

+ 14 - 0
roles/openshift_control_plane/defaults/main.yml

@@ -152,3 +152,17 @@ l_new_config_clusterNetworks:
 # added so that it can lay down the static pod definitions in a configurable place
 openshift_control_plane_static_pod_location: /etc/origin/node/pods/
 openshift_control_plane_apply_cluster_signing_config: True
+
+l_core_api_list:
+- "apps.openshift.io"
+- "authorization.openshift.io"
+- "build.openshift.io"
+- "image.openshift.io"
+- "network.openshift.io"
+- "oauth.openshift.io"
+- "project.openshift.io"
+- "quota.openshift.io"
+- "route.openshift.io"
+- "security.openshift.io"
+- "template.openshift.io"
+- "user.openshift.io"

+ 9 - 0
roles/openshift_control_plane/tasks/main.yml

@@ -296,3 +296,12 @@
   - name: Report control plane errors
     fail:
       msg: Control plane pods didn't pass health check
+
+- name: Wait for Openshift APIs to register themselves
+  command: >
+    {{ openshift_client_binary }} get --raw /apis/{{ item }}/v1
+  register: openshift_apis
+  until: openshift_apis.rc == 0
+  with_items: "{{ l_core_api_list }}"
+  retries: 60
+  delay: 5