From e54871758b6c7281809960cb4ee58d65ee89dd3a Mon Sep 17 00:00:00 2001 From: Pasha Sviderski Date: Wed, 4 Mar 2026 13:07:09 +1000 Subject: [PATCH] chore: increase wait for test cluster timeout 30s -> 60s for e2e tests on GHA --- test/e2e/cluster_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/cluster_test.go b/test/e2e/cluster_test.go index 35498a6a..58bb0e28 100644 --- a/test/e2e/cluster_test.go +++ b/test/e2e/cluster_test.go @@ -55,7 +55,7 @@ func createTestCluster( }) if waitReady { - require.NoError(t, p.WaitClusterReady(ctx, c, 30*time.Second)) + require.NoError(t, p.WaitClusterReady(ctx, c, 60*time.Second)) } return c, p