From 71c2bba69dcbaf7477956f1c45356106552c9f7a Mon Sep 17 00:00:00 2001 From: hd-rk Date: Thu, 25 Jul 2019 16:11:43 +0800 Subject: [PATCH] fix: call chartutil.ProcessDependencies in action.Install Signed-off-by: hd-rk --- pkg/action/install.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkg/action/install.go b/pkg/action/install.go index fa473a2f0..c9dcc0b0c 100644 --- a/pkg/action/install.go +++ b/pkg/action/install.go @@ -131,6 +131,10 @@ func (i *Install) Run(chrt *chart.Chart) (*release.Release, error) { i.cfg.Releases = storage.Init(driver.NewMemory()) } + if err := chartutil.ProcessDependencies(chrt, i.rawValues); err != nil { + return nil, err + } + // Make sure if Atomic is set, that wait is set as well. This makes it so // the user doesn't have to specify both i.Wait = i.Wait || i.Atomic