Skip to content

Commit

Permalink
Fix value precedence
Browse files Browse the repository at this point in the history
Fix value precedence when importing values from child. Closes #9940

Signed-off-by: Aram Zegerius <aram@zegeri.us>
(cherry picked from commit c4952c9)
  • Loading branch information
zegerius authored and mattfarina committed Apr 12, 2022
1 parent 9d3ce9b commit 5d017e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/chartutil/dependencies.go
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ func processImportValues(c *chart.Chart) error {
}

// set the new values
c.Values = CoalesceTables(b, cvals)
c.Values = CoalesceTables(cvals, b)

return nil
}
Expand Down

0 comments on commit 5d017e1

Please sign in to comment.