insecure registry
Publish Action Image / build (push) Failing after 9s
Publish Action Image / publish (push) Failing after 9s

This commit is contained in:
2026-06-29 17:32:29 +10:00
parent 52c986b859
commit f323d18cf7
4 changed files with 43 additions and 24 deletions
+2 -1
View File
@@ -103,7 +103,8 @@ func applyRegistryDefaults(r *RegistryConfig, m *MetaConfig) {
if r.URL == "" {
r.URL = DefaultRegistryURL
}
if r.PullSecret == "" {
// Insecure (in-cluster) registries need no imagePullSecret.
if r.PullSecret == "" && !r.Insecure {
r.PullSecret = DefaultPullSecret
}
if r.Repository == "" {