Merge pull request #86085 from robscott/gcp-lb-timeout

Increasing LoadBalancerPollTimeout from 15 to 22 minutes
This commit is contained in:
Kubernetes Prow Robot 2019-12-09 14:00:45 -08:00 committed by GitHub
commit 47c7b99057
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,7 +66,7 @@ const (
// LoadBalancerPollTimeout is the time required by the loadbalancer to poll.
// On average it takes ~6 minutes for a single backend to come online in GCE.
LoadBalancerPollTimeout = 15 * time.Minute
LoadBalancerPollTimeout = 22 * time.Minute
// LoadBalancerPollInterval is the interval value in which the loadbalancer polls.
LoadBalancerPollInterval = 30 * time.Second