From 7a3d5ad9b46033f5c0a49241d9cdffc48fecf516 Mon Sep 17 00:00:00 2001 From: "Adam D. Cornett" Date: Mon, 4 Nov 2024 07:33:57 -0700 Subject: [PATCH] switching helm tests back to https, there is more work to do around `metrics-secure` for helm (and then ansible repo) Signed-off-by: Adam D. Cornett --- test/e2e/helm/cluster_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/helm/cluster_test.go b/test/e2e/helm/cluster_test.go index 1d6b1d5f61..e7cd39c3ad 100644 --- a/test/e2e/helm/cluster_test.go +++ b/test/e2e/helm/cluster_test.go @@ -232,7 +232,7 @@ var _ = Describe("Running Helm projects", func() { cmdOpts := []string{ "run", "curl", "--image=curlimages/curl:7.68.0", "--restart=OnFailure", "--", "curl", "-v", "-k", "-H", fmt.Sprintf(`Authorization: Bearer %s`, token), - fmt.Sprintf("http://%s-controller-manager-metrics-service.%s.svc:8443/metrics", tc.ProjectName, tc.Kubectl.Namespace), + fmt.Sprintf("https://%s-controller-manager-metrics-service.%s.svc:8443/metrics", tc.ProjectName, tc.Kubectl.Namespace), } _, err = tc.Kubectl.CommandInNamespace(cmdOpts...) Expect(err).NotTo(HaveOccurred())