fix(helm): stop requiring a values.toml in a chart

Charts should not require a values.toml file -- some charts will just be
manifests with nothing configurable.
pull/766/head
Matt Butcher 8 years ago
parent 0214576069
commit 2704e47154

@ -116,7 +116,8 @@ func ValuesToProto(ch *chartutil.Chart) (*chartpbs.Config, error) {
vals, err := ch.LoadValues()
if err != nil {
return nil, ErrMissingValues
//return nil, ErrMissingValues
vals = map[string]interface{}{}
}
var buf bytes.Buffer

Loading…
Cancel
Save