Merge pull request #6084 from hd-rk/fix_install_process_dep

fix: Helm 3 does not respect aliased sub-chart values and condition/tags
pull/6090/head
Matthew Fisher 5 years ago committed by GitHub
commit 814cd1fc44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

Loading…
Cancel
Save