Commit 2704e471 authored by Matt Butcher's avatar Matt Butcher

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.
parent 02145760
......@@ -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
......
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