From 5b3510c0b6743e5856cc9d9b71ce6ed3f68d04cb Mon Sep 17 00:00:00 2001 From: Mark Rossetti Date: Wed, 31 May 2023 13:59:02 -0700 Subject: [PATCH] Fixing gmsa-webhook install steps for Windows GMSA full tests Signed-off-by: Mark Rossetti --- test/e2e/windows/gmsa_full.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/windows/gmsa_full.go b/test/e2e/windows/gmsa_full.go index bcb2d3667cf..636cc24e385 100644 --- a/test/e2e/windows/gmsa_full.go +++ b/test/e2e/windows/gmsa_full.go @@ -321,8 +321,8 @@ func deployGmsaWebhook(ctx context.Context, f *framework.Framework) error { bindClusterRBACRoleToServiceAccount(ctx, f, s, "cluster-admin") installSteps := []string{ - "echo \"@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing/\" >> /etc/apk/repositories", - "&& apk add kubectl@testing gettext openssl", + "echo \"@community http://dl-cdn.alpinelinux.org/alpine/edge/community/\" >> /etc/apk/repositories", + "&& apk add kubectl@community gettext openssl", "&& apk add --update coreutils", fmt.Sprintf("&& curl %s > gmsa.sh", gmsaWebhookDeployScriptURL), "&& chmod +x gmsa.sh",