From 08198fe22b59b703d27552350ee7118c3380939d Mon Sep 17 00:00:00 2001 From: Swetha Repakula Date: Mon, 26 Jun 2023 15:32:34 -0700 Subject: [PATCH] Extend Large Create Timeout to 60 min * Load balancers are taking greater than 45 to provision * https://github.com/kubernetes/kubernetes/issues/118295 --- test/e2e/framework/service/const.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/framework/service/const.go b/test/e2e/framework/service/const.go index 87a75e320df..59794a87af3 100644 --- a/test/e2e/framework/service/const.go +++ b/test/e2e/framework/service/const.go @@ -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.