From 61f54e0ef07154a1ad1f39860af66e5f50147cec Mon Sep 17 00:00:00 2001 From: Shane Utt Date: Wed, 6 Sep 2023 08:44:01 -0400 Subject: [PATCH] fix: dont wait for CRD cleanup --- test/integration/suite_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/suite_test.go b/test/integration/suite_test.go index 7d7217b9..3bccd30e 100644 --- a/test/integration/suite_test.go +++ b/test/integration/suite_test.go @@ -102,7 +102,7 @@ func TestMain(m *testing.M) { if !keepKustomizeDeploys { addCleanup(mainCleanupKey, func(context.Context) error { cleanupLog("cleaning up Gateway API CRDs") - return clusters.KustomizeDeleteForCluster(ctx, env.Cluster(), gwCRDsKustomize) + return clusters.KustomizeDeleteForCluster(ctx, env.Cluster(), gwCRDsKustomize, "--wait=false") }) }