Skip to content

Commit 2045935

Browse files
authored
Merge pull request #322 from vaibhav2107/registry-update
Updated references from k8s.gcr.io to registry.k8s.io
2 parents eaaf1d2 + 0a67bc9 commit 2045935

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

cmd/test-manifests/hello/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
spec:
1717
containers:
1818
- name: nginx
19-
image: k8s.gcr.io/nginx-slim:0.8
19+
image: registry.k8s.io/nginx-slim:0.8
2020
ports:
2121
- containerPort: 80
2222
name: web

cmd/test-manifests/hello/statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
spec:
2020
containers:
2121
- name: nginx
22-
image: k8s.gcr.io/nginx-slim:0.8
22+
image: registry.k8s.io/nginx-slim:0.8
2323
ports:
2424
- containerPort: 80
2525
name: web

internal/pkg/prune/prune_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ spec:
307307
terminationGracePeriodSeconds: 10
308308
containers:
309309
- name: nginx
310-
image: k8s.gcr.io/nginx-slim:0.8
310+
image: registry.k8s.io/nginx-slim:0.8
311311
ports:
312312
- containerPort: 80
313313
name: web

site/content/en/installation/kustomize/docker.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ See [GCR page] for available images.
1414

1515
```bash
1616
# pull the image
17-
docker pull k8s.gcr.io/kustomize/kustomize:v5.0.0
17+
docker pull registry.k8s.io/kustomize/kustomize:v5.0.0
1818

1919
# run 'kustomize version'
20-
docker run k8s.gcr.io/kustomize/kustomize:v5.0.0 version
20+
docker run registry.k8s.io/kustomize/kustomize:v5.0.0 version
2121
```
2222

2323
[GCR page]: https://us.gcr.io/k8s-artifacts-prod/kustomize/kustomize

site/content/en/references/kustomize/kustomization/configmapgenerator/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ spec:
302302
spec:
303303
containers:
304304
- name: container
305-
image: k8s.gcr.io/busybox
305+
image: registry.k8s.io/busybox
306306
command: [ "/bin/sh", "-c", "ls /etc/config/" ]
307307
volumeMounts:
308308
- name: config-volume
@@ -345,7 +345,7 @@ spec:
345345
- /bin/sh
346346
- -c
347347
- ls /etc/config/
348-
image: k8s.gcr.io/busybox
348+
image: registry.k8s.io/busybox
349349
name: container
350350
volumeMounts:
351351
- mountPath: /etc/config

0 commit comments

Comments
 (0)