From 3da300ace9aa9b24625ef61c79a54bd587acf38a Mon Sep 17 00:00:00 2001 From: Alice Frosi Date: Mon, 29 Jun 2026 13:07:26 +0000 Subject: [PATCH] Increase waitForAPI timeout from 2 to 5 minutes Signed-off-by: Alice Frosi --- internal/kube/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/kube/client.go b/internal/kube/client.go index 280f135..5b69a60 100644 --- a/internal/kube/client.go +++ b/internal/kube/client.go @@ -71,7 +71,7 @@ func waitForAPI(ctx context.Context, config *rest.Config) error { return err } - deadline := time.After(2 * time.Minute) + deadline := time.After(5 * time.Minute) ticker := time.NewTicker(2 * time.Second) defer ticker.Stop()