Browse Source

Merge pull request #5804 from smarterclayton/increase_timeout

Wait longer for GCP stability
Scott Dodson 7 years ago
parent
commit
6de05bf4de
1 changed files with 1 additions and 1 deletions
  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
 {% for node_group in openshift_gcp_node_group_config %}
 # 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 %}