From 44d93617c4c43d45f215f34e5784f67c984b14b5 Mon Sep 17 00:00:00 2001 From: Sarah Alsmiller Date: Thu, 14 Nov 2024 10:20:14 -0600 Subject: [PATCH] new chart path --- acceptance/tests/openshift/basic_openshift_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/acceptance/tests/openshift/basic_openshift_test.go b/acceptance/tests/openshift/basic_openshift_test.go index 9bd5725b3c..bd42c4396a 100644 --- a/acceptance/tests/openshift/basic_openshift_test.go +++ b/acceptance/tests/openshift/basic_openshift_test.go @@ -40,7 +40,8 @@ func TestOpenshift_Basic(t *testing.T) { // FUTURE for some reason NewHelmCluster creates a consul server pod that runs as root which // isn't allowed in OpenShift. In order to test OpenShift properly, we have to call helm and k8s // directly to bypass. Ideally we would just fix the framework that is running the pod as root. - cmd = exec.Command("helm", "upgrade", "--install", "consul", "hashicorp/consul", + chartPath := "../../../charts/consul" + cmd = exec.Command("helm", "upgrade", "--install", "consul", chartPath, "--namespace", "consul", "--create-namespace", "--set", "global.name=consul", "--set", "connectInject.enabled=true",