fix ensureMissingRepos issue when has same chart name

Signed-off-by: yxxhero <aiopsclub@163.com>
pull/12593/head
yxxhero 7 months ago
parent 4a5e26b86c
commit 49993db9bc

@ -509,6 +509,10 @@ func (m *Manager) ensureMissingRepos(repoNames map[string]string, deps []*chart.
continue
}
if _, ok := repoNames[dd.Repository]; ok {
continue
}
// When the repoName for a dependency is known we can skip ensuring
if _, ok := repoNames[dd.Name]; ok {
continue

Loading…
Cancel
Save