Unverified Commit d2c8dbc7 authored by Matthew Fisher's avatar Matthew Fisher Committed by GitHub

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
parents 00733bcd 4d579bbb
......@@ -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)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment