Skip to content

Commit 89cbfcd

Browse files
authored
Bumped up helm-charts to 1.5 (#793)
* Update helm-update test
1 parent 1408e43 commit 89cbfcd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/e2e/cli/helm/helm.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ func Install(args ...string) {
5757
session := cli.Execute("helm", args...)
5858
msg := cli.GetSessionExitMsg(session)
5959
ExpectWithOffset(1, msg).Should(SatisfyAny(Say("STATUS: deployed"), Say("already exists"), BeEmpty()),
60-
"HELM. Can't install release",
60+
"HELM. Can't install release. Message: "+string(msg.Contents()),
6161
)
6262
}
6363

@@ -120,7 +120,7 @@ func InstallOperatorNamespacedFromLatestRelease(input model.UserInputs) {
120120
Install(
121121
"atlas-operator-"+input.Project.GetProjectName(),
122122
"mongodb/mongodb-atlas-operator",
123-
"--set-string", fmt.Sprintf("watchNamespaces=%s", input.Namespace),
123+
"--set", fmt.Sprintf("watchNamespaces={%s}", input.Namespace),
124124
"--set-string", fmt.Sprintf("atlasURI=%s", config.AtlasHost),
125125
"--namespace="+input.Namespace,
126126
"--create-namespace",

0 commit comments

Comments
 (0)