From add8407cfb13a5cdfe7eb8d0e89c909b59519ad7 Mon Sep 17 00:00:00 2001 From: Alberto Garcia Date: Sun, 8 May 2022 18:36:59 +0200 Subject: [PATCH] fix: values in library subcharts are ignored Signed-off-by: Alberto Garcia --- pkg/chartutil/dependencies.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/chartutil/dependencies.go b/pkg/chartutil/dependencies.go index e01b95bf7..d2e7d6dc9 100644 --- a/pkg/chartutil/dependencies.go +++ b/pkg/chartutil/dependencies.go @@ -268,7 +268,7 @@ func processImportValues(c *chart.Chart) error { } // set the new values - c.Values = CoalesceTables(cvals, b) + c.Values = CoalesceTables(b, cvals) return nil }