fix: prevent global values from subcharts to affect parent and sibling charts

Signed-off-by: Bernd Gutjahr <bernd.gutjahr@microfocus.com>
pull/8800/head
Bernd Gutjahr 5 years ago
parent 6085919236
commit 4fafe2fe11

@ -112,6 +112,7 @@ func coalesceGlobals(dest, src map[string]interface{}) {
if destv, ok := dg[key]; !ok {
// Here there is no merge. We're just adding.
dg[key] = vv
continue
} else {
if destvmap, ok := destv.(map[string]interface{}); !ok {
log.Printf("Conflict: cannot merge map onto non-map for %q. Skipping.", key)

Loading…
Cancel
Save