diff --git a/best-practices/require_probes/resource.yaml b/best-practices/require_probes/resource.yaml index e9a48a9d9..fe65edc68 100644 --- a/best-practices/require_probes/resource.yaml +++ b/best-practices/require_probes/resource.yaml @@ -7,7 +7,7 @@ metadata: spec: containers: - name: goproxy - image: k8s.gcr.io/goproxy:0.1 + image: registry.k8s.io/goproxy:0.1 readinessProbe: tcpSocket: port: 8080 @@ -26,7 +26,7 @@ metadata: spec: containers: - name: goproxy - image: k8s.gcr.io/goproxy:0.1 + image: registry.k8s.io/goproxy:0.1 readinessProbe: tcpSocket: port: 8080 @@ -55,7 +55,7 @@ metadata: spec: containers: - name: goproxy - image: k8s.gcr.io/goproxy:0.1 + image: registry.k8s.io/goproxy:0.1 ports: - containerPort: 8080 readinessProbe: @@ -86,7 +86,7 @@ metadata: spec: containers: - name: goproxy - image: k8s.gcr.io/goproxy:0.1 + image: registry.k8s.io/goproxy:0.1 ports: - containerPort: 8080 --- @@ -99,7 +99,7 @@ metadata: spec: containers: - name: goproxy - image: k8s.gcr.io/goproxy:0.1 + image: registry.k8s.io/goproxy:0.1 ports: - containerPort: 8080 readinessProbe: diff --git a/best-practices/restrict_image_registries/resource.yaml b/best-practices/restrict_image_registries/resource.yaml index 8e4d2b12c..d5f164ad6 100644 --- a/best-practices/restrict_image_registries/resource.yaml +++ b/best-practices/restrict_image_registries/resource.yaml @@ -5,7 +5,7 @@ metadata: spec: containers: - name: k8s-nginx - image: k8s.gcr.io/nginx:1.7.9 + image: registry.k8s.io/nginx:1.7.9 --- apiVersion: v1 kind: Pod @@ -14,7 +14,7 @@ metadata: spec: containers: - name: k8s-nginx - image: k8s.gcr.io/nginx:1.7.9 + image: registry.k8s.io/nginx:1.7.9 - name: busybox image: bar.io/busybox --- @@ -25,7 +25,7 @@ metadata: spec: containers: - name: k8s-nginx - image: k8s.gcr.io/nginx:1.7.9 + image: registry.k8s.io/nginx:1.7.9 - name: busybox image: eu.foo.io/busybox --- diff --git a/other/disallow_all_secrets/resource.yaml b/other/disallow_all_secrets/resource.yaml index 07ef730cf..3b58436ce 100644 --- a/other/disallow_all_secrets/resource.yaml +++ b/other/disallow_all_secrets/resource.yaml @@ -27,7 +27,7 @@ metadata: spec: containers: - name: test-container - image: k8s.gcr.io/busybox + image: registry.k8s.io/busybox command: [ "/bin/sh", "-c", "env" ] envFrom: - secretRef: @@ -45,7 +45,7 @@ spec: secretName: mysecret containers: - name: test-container - image: k8s.gcr.io/busybox + image: registry.k8s.io/busybox volumeMounts: - name: secret-volume readOnly: true diff --git a/other/disallow_secrets_from_env_vars/resource.yaml b/other/disallow_secrets_from_env_vars/resource.yaml index 94c591d73..031d77c99 100644 --- a/other/disallow_secrets_from_env_vars/resource.yaml +++ b/other/disallow_secrets_from_env_vars/resource.yaml @@ -27,7 +27,7 @@ metadata: spec: containers: - name: test-container - image: k8s.gcr.io/busybox + image: registry.k8s.io/busybox command: [ "/bin/sh", "-c", "env" ] envFrom: - secretRef: diff --git a/other/ensure_probes_different/resource.yaml b/other/ensure_probes_different/resource.yaml index 16b33c0fa..6f524a756 100644 --- a/other/ensure_probes_different/resource.yaml +++ b/other/ensure_probes_different/resource.yaml @@ -17,7 +17,7 @@ spec: spec: containers: - name: goproxy - image: k8s.gcr.io/goproxy:0.1 + image: registry.k8s.io/goproxy:0.1 ports: - containerPort: 8080 readinessProbe: @@ -51,7 +51,7 @@ spec: spec: containers: - name: goproxy - image: k8s.gcr.io/goproxy:0.1 + image: registry.k8s.io/goproxy:0.1 ports: - containerPort: 8080 readinessProbe: diff --git a/other/require_pod_priorityclassname/resource.yaml b/other/require_pod_priorityclassname/resource.yaml index dd77ac2b6..c4bba450b 100644 --- a/other/require_pod_priorityclassname/resource.yaml +++ b/other/require_pod_priorityclassname/resource.yaml @@ -8,7 +8,7 @@ spec: priorityClassName: foo containers: - name: goproxy - image: k8s.gcr.io/goproxy:0.1 + image: registry.k8s.io/goproxy:0.1 --- apiVersion: v1 kind: Pod @@ -19,4 +19,4 @@ metadata: spec: containers: - name: goproxy - image: k8s.gcr.io/goproxy:0.1 + image: registry.k8s.io/goproxy:0.1 diff --git a/other/restrict_secrets_by_label/resource.yaml b/other/restrict_secrets_by_label/resource.yaml index 81131fc05..e56a04ea3 100644 --- a/other/restrict_secrets_by_label/resource.yaml +++ b/other/restrict_secrets_by_label/resource.yaml @@ -28,7 +28,7 @@ metadata: spec: containers: - name: test-container - image: k8s.gcr.io/busybox + image: registry.k8s.io/busybox command: [ "/bin/sh", "-c", "env" ] envFrom: - secretRef: @@ -46,7 +46,7 @@ spec: secretName: mysecret containers: - name: test-container - image: k8s.gcr.io/busybox + image: registry.k8s.io/busybox volumeMounts: - name: secret-volume readOnly: true