Merge pull request #4072 from rocky-nupt/fix-depup-install

Fix(helm): fix the bug of the charts not deployed after downloaded in helm install --dep-up
pull/4146/merge
Matthew Fisher 6 years ago committed by GitHub
commit d2c8dbc7c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -258,6 +258,12 @@ func (i *installCmd) run() error {
if err := man.Update(); err != nil {
return prettyError(err)
}
// Update all dependencies which are present in /charts.
chartRequested, err = chartutil.Load(i.chartPath)
if err != nil {
return prettyError(err)
}
} else {
return prettyError(err)
}

Loading…
Cancel
Save