Skip to content

Commit

Permalink
new chart path
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahalsmiller committed Nov 14, 2024
1 parent f991992 commit 44d9361
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion acceptance/tests/openshift/basic_openshift_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 44d9361

Please sign in to comment.