resolved deps even when installed=false (#1120)

fix #1119
revert #1054

Signed-off-by: Cyril Jouve <jv.cyril@gmail.com>
This commit is contained in:
Cyril Jouve 2023-11-09 05:02:32 +01:00 committed by GitHub
parent 4f17c66f03
commit 66935c4080
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -223,10 +223,6 @@ func getUnresolvedDependenciess(st *HelmState) (string, *UnresolvedDependencies,
unresolved := &UnresolvedDependencies{deps: map[string][]unresolvedChartDependency{}}
for _, r := range st.Releases {
if !r.Desired() {
continue
}
repo, chart, ok := resolveRemoteChart(r.Chart)
if !ok {
continue