Skip to content

Commit 3cccc08

Browse files
committed
Remove all examples/references to Docker Hub
Signed-off-by: Connor Catlett <[email protected]>
1 parent 9e4030d commit 3cccc08

File tree

11 files changed

+15
-15
lines changed

11 files changed

+15
-15
lines changed

charts/aws-ebs-csi-driver/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ controller:
337337
# Example:
338338
#
339339
# - name: wait
340-
# image: busybox
340+
# image: public.ecr.aws/amazonlinux/amazonlinux
341341
# command: [ 'sh', '-c', "sleep 20" ]
342342
# Enable opentelemetry tracing for the plugin running on the daemonset
343343
otelTracing: {}
@@ -454,7 +454,7 @@ node:
454454
# Example:
455455
#
456456
# - name: wait
457-
# image: busybox
457+
# image: public.ecr.aws/amazonlinux/amazonlinux
458458
# command: [ 'sh', '-c', "sleep 20" ]
459459
# Enable opentelemetry tracing for the plugin running on the daemonset
460460
otelTracing: {}

examples/kubernetes/block-volume/manifests/pod.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ metadata:
1919
spec:
2020
containers:
2121
- name: app
22-
image: busybox
22+
image: public.ecr.aws/amazonlinux/amazonlinux
2323
command: ["/bin/sh", "-c"]
2424
args: ["tail -f /dev/null"]
2525
volumeDevices:

examples/kubernetes/dynamic-provisioning/manifests/pod.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ metadata:
1919
spec:
2020
containers:
2121
- name: app
22-
image: centos
22+
image: public.ecr.aws/amazonlinux/amazonlinux
2323
command: ["/bin/sh"]
2424
args: ["-c", "while true; do echo $(date -u) >> /data/out.txt; sleep 5; done"]
2525
volumeMounts:
@@ -28,4 +28,4 @@ spec:
2828
volumes:
2929
- name: persistent-storage
3030
persistentVolumeClaim:
31-
claimName: ebs-claim
31+
claimName: ebs-claim

examples/kubernetes/ephemeral-volume/manifests/pod.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ metadata:
1919
spec:
2020
containers:
2121
- name: app
22-
image: centos
22+
image: public.ecr.aws/amazonlinux/amazonlinux
2323
command: ["/bin/sh"]
2424
args: ["-c", "while true; do echo $(date -u) >> /data/out.txt; sleep 5; done"]
2525
volumeMounts:

examples/kubernetes/modify-volume/manifests/pod-with-volume.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ metadata:
4141
spec:
4242
containers:
4343
- name: app
44-
image: centos
44+
image: public.ecr.aws/amazonlinux/amazonlinux
4545
command: ["/bin/sh"]
4646
args: ["-c", "while true; do echo $(date -u) | tee /data/out.txt; sleep 5; done"]
4747
volumeMounts:

examples/kubernetes/resizing/manifests/pod.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ metadata:
1919
spec:
2020
containers:
2121
- name: app
22-
image: centos
22+
image: public.ecr.aws/amazonlinux/amazonlinux
2323
command: ["/bin/sh"]
2424
args: ["-c", "while true; do echo $(date -u) >> /data/out.txt; sleep 5; done"]
2525
volumeMounts:
@@ -28,4 +28,4 @@ spec:
2828
volumes:
2929
- name: persistent-storage
3030
persistentVolumeClaim:
31-
claimName: ebs-claim
31+
claimName: ebs-claim

examples/kubernetes/snapshot/manifests/app/pod.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ metadata:
1919
spec:
2020
containers:
2121
- name: app
22-
image: centos
22+
image: public.ecr.aws/amazonlinux/amazonlinux
2323
command: ["/bin/sh"]
2424
args: ["-c", "while true; do echo $(date -u) >> /data/out.txt; sleep 5; done"]
2525
volumeMounts:

examples/kubernetes/snapshot/manifests/snapshot-import/app/pod.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ metadata:
1919
spec:
2020
containers:
2121
- name: app
22-
image: centos
22+
image: public.ecr.aws/amazonlinux/amazonlinux
2323
command: ["/bin/sh"]
2424
args: ["-c", "while true; do echo $(date -u) >> /data/out.txt; sleep 5; done"]
2525
volumeMounts:

examples/kubernetes/snapshot/manifests/snapshot-restore/pod.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ metadata:
1919
spec:
2020
containers:
2121
- name: app
22-
image: centos
22+
image: public.ecr.aws/amazonlinux/amazonlinux
2323
command: ["/bin/sh"]
2424
args: ["-c", "while true; do echo $(date -u) >> /data/out.txt; sleep 5; done"]
2525
volumeMounts:

examples/kubernetes/static-provisioning/manifests/pod.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ metadata:
1919
spec:
2020
containers:
2121
- name: app
22-
image: centos
22+
image: public.ecr.aws/amazonlinux/amazonlinux
2323
command: ["/bin/sh"]
2424
args: ["-c", "while true; do echo $(date -u) >> /data/out.txt; sleep 5; done"]
2525
volumeMounts:

examples/kubernetes/storageclass/manifests/pod.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ metadata:
1919
spec:
2020
containers:
2121
- name: app
22-
image: centos
22+
image: public.ecr.aws/amazonlinux/amazonlinux
2323
command: ["/bin/sh"]
2424
args: ["-c", "while true; do echo $(date -u) >> /data/out.txt; sleep 5; done"]
2525
volumeMounts:
@@ -28,4 +28,4 @@ spec:
2828
volumes:
2929
- name: persistent-storage
3030
persistentVolumeClaim:
31-
claimName: ebs-claim
31+
claimName: ebs-claim

0 commit comments

Comments
 (0)