Przeglądaj źródła

Allow master node group to wait for stable on GCP

Masters can be in a bootstrap config, but allow them to wait for stable
so that we don't have inventory issues.
Clayton Coleman 7 lat temu
rodzic
commit
07a2312baf
1 zmienionych plików z 3 dodań i 3 usunięć
  1. 3 3
      roles/openshift_gcp/templates/provision.j2.sh

+ 3 - 3
roles/openshift_gcp/templates/provision.j2.sh

@@ -313,11 +313,11 @@ fi
 
 # wait until all node groups are stable
 {% for node_group in openshift_gcp_node_group_config %}
-{% if node_group.bootstrap | default(False) %}
-# not waiting for {{ node_group.name }} due to bootstrapping
-{% else %}
+{% if node_group.wait_for_stable | default(False) or not (node_group.bootstrap | default(False)) %}
 # wait for stable {{ node_group.name }}
 ( gcloud --project "{{ openshift_gcp_project }}" compute instance-groups managed wait-until-stable "{{ openshift_gcp_prefix }}ig-{{ node_group.suffix }}" --zone "{{ openshift_gcp_zone }}" --timeout=600 ) &
+{% else %}
+# not waiting for {{ node_group.name }} due to bootstrapping
 {% endif %}
 {% endfor %}