From 93b4a3740ba0c35e8b62cbf8c70058d1e53c3b8e Mon Sep 17 00:00:00 2001 From: Andrey Smirnov Date: Tue, 28 Jan 2025 18:42:06 +0400 Subject: [PATCH] test: bump timeout on rotate CA test When using VIP, recovery of Kubernetes controlplane takes more time (plus given the fact that the test rotates PKI twice). Signed-off-by: Andrey Smirnov --- internal/integration/api/rotate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/integration/api/rotate.go b/internal/integration/api/rotate.go index baefc001c7..77c17ab38c 100644 --- a/internal/integration/api/rotate.go +++ b/internal/integration/api/rotate.go @@ -43,7 +43,7 @@ func (suite *RotateCASuite) SuiteName() string { // SetupTest ... func (suite *RotateCASuite) SetupTest() { // make sure API calls have timeout - suite.ctx, suite.ctxCancel = context.WithTimeout(context.Background(), 5*time.Minute) + suite.ctx, suite.ctxCancel = context.WithTimeout(context.Background(), 10*time.Minute) } // TearDownTest ...