We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af0deb1 commit 16143eaCopy full SHA for 16143ea
1 file changed
spec.go
@@ -15,6 +15,10 @@ func (spec *ChartSpec) GetValuesMap() (map[string]interface{}, error) {
15
return nil, err
16
}
17
18
+ if values == nil {
19
+ values = map[string]interface{}{}
20
+ }
21
+
22
for k, v := range spec.Annotations {
23
values[toAnnotationKey(k)] = v
24
0 commit comments