Ver Fonte

Wait longer for stable GCP instances

We are seeing instances take longer than 5m to become available,
possibly due to GCP infra issues.
Clayton Coleman há 7 anos atrás
pai
commit
eaaed92ab2
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      roles/openshift_gcp/templates/provision.j2.sh

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

@@ -313,7 +313,7 @@ fi
 # wait until all node groups are stable
 # wait until all node groups are stable
 {% for node_group in openshift_gcp_node_group_config %}
 {% for node_group in openshift_gcp_node_group_config %}
 # wait for stable {{ node_group.name }}
 # 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=300) &
+( 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 ) &
 {% endfor %}
 {% endfor %}