diff --git a/CHANGELOG.md b/CHANGELOG.md index 3af0f7626f..3241d139b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -926,7 +926,7 @@ - URL map / backend service mapping is totally shuffled [\#555](https://github.com/kubernetes/ingress-gce/issues/555) - Backend health is reported as "Unknown" if there are no pods in the first zone of a regional cluster [\#554](https://github.com/kubernetes/ingress-gce/issues/554) - Ingress controller does not support HTTP2 with mutual TLS [\#553](https://github.com/kubernetes/ingress-gce/issues/553) -- ErrImagePull: k8s.gcr.io/defaultbackend:1.5 not found [\#549](https://github.com/kubernetes/ingress-gce/issues/549) +- ErrImagePull: registry.k8s.io/defaultbackend:1.5 not found [\#549](https://github.com/kubernetes/ingress-gce/issues/549) - configure maxRatePerInstance in backend [\#545](https://github.com/kubernetes/ingress-gce/issues/545) - GKE BackendConfig permissions change `container.backendConfigs.get` does not exist [\#538](https://github.com/kubernetes/ingress-gce/issues/538) - A new home for 404-server \(defaultbackend\) [\#498](https://github.com/kubernetes/ingress-gce/issues/498) @@ -1054,7 +1054,7 @@ - URL map / backend service mapping is totally shuffled [\#555](https://github.com/kubernetes/ingress-gce/issues/555) - Backend health is reported as "Unknown" if there are no pods in the first zone of a regional cluster [\#554](https://github.com/kubernetes/ingress-gce/issues/554) - Ingress controller does not support HTTP2 with mutual TLS [\#553](https://github.com/kubernetes/ingress-gce/issues/553) -- ErrImagePull: k8s.gcr.io/defaultbackend:1.5 not found [\#549](https://github.com/kubernetes/ingress-gce/issues/549) +- ErrImagePull: registry.k8s.io/defaultbackend:1.5 not found [\#549](https://github.com/kubernetes/ingress-gce/issues/549) - configure maxRatePerInstance in backend [\#545](https://github.com/kubernetes/ingress-gce/issues/545) - GKE BackendConfig permissions change `container.backendConfigs.get` does not exist [\#538](https://github.com/kubernetes/ingress-gce/issues/538) - A new home for 404-server \(defaultbackend\) [\#498](https://github.com/kubernetes/ingress-gce/issues/498) diff --git a/docs/deploy/gke/README.md b/docs/deploy/gke/README.md index 4837f565d9..e92e5bd755 100644 --- a/docs/deploy/gke/README.md +++ b/docs/deploy/gke/README.md @@ -104,7 +104,7 @@ For other options, see the `--help` output. Can speed things up if you've already pushed an image (or want to use a specific version) with `--image-url PATH` (eg, -`--image-url k8s.gcr.io/ingress-gce-glbc-amd64:v1.5.2`). Can also set the `REGISTRY` +`--image-url registry.k8s.io/ingress-gce-glbc-amd64:v1.5.2`). Can also set the `REGISTRY` env var to provide a custom place to push your image to if it's not the same project as your cluster is in. The tags pushed to will be that of the `git describe --tags --always --dirty` command. If the `VERSION` env var is set, that diff --git a/docs/deploy/gke/csm/default-http-backend.yaml b/docs/deploy/gke/csm/default-http-backend.yaml index b322194135..b45e0358fe 100644 --- a/docs/deploy/gke/csm/default-http-backend.yaml +++ b/docs/deploy/gke/csm/default-http-backend.yaml @@ -22,7 +22,7 @@ spec: # Any image is permissible as long as: # 1. It serves a 404 page at / # 2. It serves 200 on a /healthz endpoint - image: k8s.gcr.io/defaultbackend-amd64:1.5 + image: registry.k8s.io/defaultbackend-amd64:1.5 livenessProbe: httpGet: path: /healthz diff --git a/docs/deploy/gke/csm/glbc.yaml b/docs/deploy/gke/csm/glbc.yaml index a11f83bd8a..9837e53e66 100644 --- a/docs/deploy/gke/csm/glbc.yaml +++ b/docs/deploy/gke/csm/glbc.yaml @@ -22,7 +22,7 @@ spec: serviceAccountName: glbc terminationGracePeriodSeconds: 600 containers: - - image: k8s.gcr.io/ingress-gce-glbc-amd64:v1.8.0 + - image: registry.k8s.io/ingress-gce-glbc-amd64:v1.8.0 livenessProbe: httpGet: path: /healthz diff --git a/docs/deploy/gke/non-gcp/default-http-backend.yaml b/docs/deploy/gke/non-gcp/default-http-backend.yaml index b322194135..b45e0358fe 100644 --- a/docs/deploy/gke/non-gcp/default-http-backend.yaml +++ b/docs/deploy/gke/non-gcp/default-http-backend.yaml @@ -22,7 +22,7 @@ spec: # Any image is permissible as long as: # 1. It serves a 404 page at / # 2. It serves 200 on a /healthz endpoint - image: k8s.gcr.io/defaultbackend-amd64:1.5 + image: registry.k8s.io/defaultbackend-amd64:1.5 livenessProbe: httpGet: path: /healthz diff --git a/docs/deploy/gke/non-gcp/glbc.yaml b/docs/deploy/gke/non-gcp/glbc.yaml index 22288d3a9e..c19728eedb 100644 --- a/docs/deploy/gke/non-gcp/glbc.yaml +++ b/docs/deploy/gke/non-gcp/glbc.yaml @@ -23,7 +23,7 @@ spec: terminationGracePeriodSeconds: 600 hostNetwork: true containers: - - image: k8s.gcr.io/ingress-gce-glbc-amd64:v1.8.0 + - image: registry.k8s.io/ingress-gce-glbc-amd64:v1.8.0 livenessProbe: httpGet: path: /healthz diff --git a/docs/deploy/resources/default-http-backend.yaml b/docs/deploy/resources/default-http-backend.yaml index 83a17a328d..1561285c39 100644 --- a/docs/deploy/resources/default-http-backend.yaml +++ b/docs/deploy/resources/default-http-backend.yaml @@ -22,7 +22,7 @@ spec: # Any image is permissible as long as: # 1. It serves a 404 page at / # 2. It serves 200 on a /healthz endpoint - image: k8s.gcr.io/defaultbackend-amd64:1.5 + image: registry.k8s.io/defaultbackend-amd64:1.5 livenessProbe: httpGet: path: /healthz diff --git a/docs/troubleshooting/troubleshooting.md b/docs/troubleshooting/troubleshooting.md index c163ead1a2..af02737f60 100644 --- a/docs/troubleshooting/troubleshooting.md +++ b/docs/troubleshooting/troubleshooting.md @@ -250,7 +250,7 @@ spec: terminationGracePeriodSeconds: 60 containers: - name: default-http-backend - image: k8s.gcr.io/defaultbackend:1.5 + image: registry.k8s.io/defaultbackend:1.5 volumeMounts: - mountPath: /etc/kubernetes name: kubeconfig diff --git a/pkg/e2e/fixtures.go b/pkg/e2e/fixtures.go index 0fcf905f05..516bfbe838 100644 --- a/pkg/e2e/fixtures.go +++ b/pkg/e2e/fixtures.go @@ -439,7 +439,7 @@ func CreatePorterDeployment(s *Sandbox, name string, replicas int32, version str Containers: []apiv1.Container{ { Name: "hostname", - Image: "k8s.gcr.io/e2e-test-images/agnhost:2.32", + Image: "registry.k8s.io/e2e-test-images/agnhost:2.32", Args: []string{"porter"}, Env: []apiv1.EnvVar{{Name: env, Value: env}}, Ports: []apiv1.ContainerPort{{Name: "server", ContainerPort: porterPort}},