Extend Large Create Timeout to 60 min

* Load balancers are taking greater than 45 to provision
 * https://github.com/kubernetes/kubernetes/issues/118295
This commit is contained in:
Swetha Repakula 2023-06-26 15:32:34 -07:00
parent 6442024f1c
commit 08198fe22b

View File

@ -54,7 +54,7 @@ const (
loadBalancerCreateTimeoutDefault = 15 * time.Minute
// LoadBalancerCreateTimeoutLarge is the maximum time to wait for a load balancer to be created/modified.
// Hideen - use GetServiceLoadBalancerCreateTimeout function instead.
loadBalancerCreateTimeoutLarge = 45 * time.Minute
loadBalancerCreateTimeoutLarge = 60 * time.Minute
// LoadBalancerPropagationTimeoutDefault is the default time to wait for pods to
// be targeted by load balancers.