do not update oci-based repos

Signed-off-by: Josh Dolitsky <josh@dolit.ski>
pull/9782/head
Josh Dolitsky 3 years ago
parent e856df8a54
commit e5b03c73f0
No known key found for this signature in database
GPG Key ID: B2B93673243A65FB

@ -493,6 +493,11 @@ func (m *Manager) ensureMissingRepos(repoNames map[string]string, deps []*chart.
continue
}
// OCI-based dependencies do not have a local cache, so skip them
if strings.HasPrefix(dd.Repository, "oci://") {
continue
}
// When the repoName for a dependency is known we can skip ensuring
if _, ok := repoNames[dd.Name]; ok {
continue

Loading…
Cancel
Save