From 7c9aff3278e50e5ee32b3d1a4c3654e225a3d947 Mon Sep 17 00:00:00 2001 From: Matt Moyer Date: Wed, 3 Mar 2021 16:49:33 -0600 Subject: [PATCH] Allow TestE2EFullIntegration to run on clusters where only the impersonation proxy works. Signed-off-by: Matt Moyer --- test/integration/e2e_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/e2e_test.go b/test/integration/e2e_test.go index 87a9646c..7fe6d351 100644 --- a/test/integration/e2e_test.go +++ b/test/integration/e2e_test.go @@ -41,7 +41,7 @@ import ( // TestE2EFullIntegration tests a full integration scenario that combines the supervisor, concierge, and CLI. func TestE2EFullIntegration(t *testing.T) { - env := library.IntegrationEnv(t).WithCapability(library.ClusterSigningKeyIsAvailable) + env := library.IntegrationEnv(t) // If anything in this test crashes, dump out the supervisor and proxy pod logs. defer library.DumpLogs(t, env.SupervisorNamespace, "")