Commit 6f891ea8 authored by Matt Butcher's avatar Matt Butcher Committed by GitHub

Merge pull request #1633 from technosophos/fix/1631-fix-values

fix(helm): fix broken --values flag
parents aec6c507 cba094f3
......@@ -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)
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment