Merge pull request #1712 from cheukwing/fix-chart-version-tests

Add ChartVersion to helm install when running tests
This commit is contained in:
jetstack-bot 2019-05-22 15:09:23 +01:00 committed by GitHub
commit 52ce959356
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -156,7 +156,8 @@ func (c *Chart) runInstall() error {
args := []string{"install", c.ChartName,
"--wait",
"--namespace", c.Namespace,
"--name", c.ReleaseName}
"--name", c.ReleaseName,
"--version", c.ChartVersion}
for _, v := range c.Values {
args = append(args, "--values", v)