Skip to content
This repository has been archived by the owner on Nov 2, 2023. It is now read-only.

chore: migrate from k8s.gcr.io to registry.k8s.io #142

Merged
merged 1 commit into from
Apr 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/yurtappmanager/apis/apps/v1alpha1/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
)

const (
defaultIngressControllerImage string = "k8s.gcr.io/ingress-nginx/controller:v0.48.1"
defaultIngressControllerImage string = "registry.k8s.io/ingress-nginx/controller:v0.48.1"
defaultIngressWebhookCertGenImage string = "docker.io/jettech/kube-webhook-certgen:v1.5.1"
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ var defaultYurtIngress = &v1alpha1.YurtIngress{
},
Spec: v1alpha1.YurtIngressSpec{
Replicas: 1,
IngressControllerImage: "k8s.gcr.io/ingress-nginx/controller:v0.49.0",
IngressWebhookCertGenImage: "k8s.gcr.io/ingress-nginx/kube-webhook-certgen:v0.49.0",
IngressControllerImage: "registry.k8s.io/ingress-nginx/controller:v0.49.0",
IngressWebhookCertGenImage: "registry.k8s.io/ingress-nginx/kube-webhook-certgen:v0.49.0",
Pools: []v1alpha1.IngressPool{{Name: "beijing"}},
},
}
Expand Down