From 9c30e6f39ab09007d5aa276aee54524a12f60244 Mon Sep 17 00:00:00 2001 From: Jacob See <5027680+jacobsee@users.noreply.github.com> Date: Wed, 2 Sep 2026 11:38:44 -0700 Subject: [PATCH] Bump network config timeout to 25 minutes This is needed because KAS rollout on AWS now has a 300 sec (x3) rollout delay due to long LB drain times, which pushes the whole process now slightly over 20 min. --- test/extended/networking/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/extended/networking/util.go b/test/extended/networking/util.go index c00473cb1c39..cc68edd3bb9d 100644 --- a/test/extended/networking/util.go +++ b/test/extended/networking/util.go @@ -295,7 +295,7 @@ func makeNamespaceScheduleToAllNodes(f *e2e.Framework) { func modifyNetworkConfig(configClient configv1client.Interface, autoAssignCIDRs, allowedCIDRs, rejectedCIDRs []string) { ctx := context.Background() - ctx, cancel := context.WithTimeout(ctx, 20*time.Minute) + ctx, cancel := context.WithTimeout(ctx, 25*time.Minute) defer cancel() kubeAPIServerRollout := exutil.WaitForOperatorToRollout(ctx, configClient, "kube-apiserver")