From 70256d812c924d682d4246fac875eb9c1562c162 Mon Sep 17 00:00:00 2001 From: Matt Butcher Date: Fri, 2 Dec 2016 17:39:05 -0700 Subject: [PATCH] fix(helm): fix broken --values flag This fixes the 'helm upgrade --values', which I broke when fixing '--set'. Closes #1631 --- cmd/helm/upgrade.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/upgrade.go b/cmd/helm/upgrade.go index 950c48c71..4d42c1d36 100644 --- a/cmd/helm/upgrade.go +++ b/cmd/helm/upgrade.go @@ -171,7 +171,7 @@ func (u *upgradeCmd) vals() ([]byte, error) { return []byte{}, err } - if err := yaml.Unmarshal(bytes, base); err != nil { + if err := yaml.Unmarshal(bytes, &base); err != nil { return []byte{}, fmt.Errorf("failed to parse %s: %s", u.valuesFile, err) } }