Fix(helm): fix the bug of the charts not deployed after downloaded

in helm install --dep-up

helm install --dep-up does not deploy the charts downloaded by itself.
I reload the charts path after downloading the missing charts.

Closes #3423
pull/4207/head^2
rocky 7 years ago committed by Sebastien Plisson
parent c5dd4b1fde
commit 0b202eb184

@ -260,6 +260,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