From ffbf17cecd2a6b7f12c3a5927a66427de085f827 Mon Sep 17 00:00:00 2001 From: James Munnelly Date: Sat, 13 Jan 2018 15:28:21 +0000 Subject: [PATCH] Fix passing boulder image args --- test/e2e/e2e.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/e2e.go b/test/e2e/e2e.go index f49e4b38e..584aabd5a 100644 --- a/test/e2e/e2e.go +++ b/test/e2e/e2e.go @@ -50,10 +50,10 @@ func RunE2ETests(t *testing.T) { glog.Infof("Installing boulder chart") extraArgs := []string{} if framework.TestContext.BoulderImageRepo != "" { - extraArgs = append(extraArgs, "--set image.repository="+framework.TestContext.BoulderImageRepo) + extraArgs = append(extraArgs, "--set", "image.repository="+framework.TestContext.BoulderImageRepo) } if framework.TestContext.BoulderImageTag != "" { - extraArgs = append(extraArgs, "--set image.tag="+framework.TestContext.BoulderImageTag) + extraArgs = append(extraArgs, "--set", "image.tag="+framework.TestContext.BoulderImageTag) } InstallHelmChart(t, "boulder", "./contrib/charts/boulder", "boulder", "./test/fixtures/boulder-values.yaml", extraArgs...) glog.Infof("Starting e2e run %q on Ginkgo node %d", framework.RunId, config.GinkgoConfig.ParallelNode)