From e67ec26bad6a3238f017fea75eabf1b8bcaf5e57 Mon Sep 17 00:00:00 2001 From: Bob Fournier Date: Tue, 9 Jun 2026 11:39:43 -0400 Subject: [PATCH] AGENT-1535: Increase the time checking for IRI SCC uid-range Increase the time to check for the SCC uid-range annotation to appear in the InternalReleaseImage test. --- test/extended/internalreleaseimage/helper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/extended/internalreleaseimage/helper.go b/test/extended/internalreleaseimage/helper.go index bcf9d48c7025..caa3baa6e8d7 100644 --- a/test/extended/internalreleaseimage/helper.go +++ b/test/extended/internalreleaseimage/helper.go @@ -179,7 +179,7 @@ func (h *IRITestHelper) CreateSimpleNamespace() string { // Wait for the namespace controller to set the SCC uid-range annotation, // which is required by the admission controller before pods can be created. - err = wait.PollUntilContextTimeout(context.Background(), 500*time.Millisecond, 30*time.Second, true, func(ctx context.Context) (bool, error) { + err = wait.PollUntilContextTimeout(context.Background(), 500*time.Millisecond, 60*time.Second, true, func(ctx context.Context) (bool, error) { updatedNs, err := h.oc.AdminKubeClient().CoreV1().Namespaces().Get(ctx, createdNs.Name, metav1.GetOptions{}) if err != nil { return false, err