Skip to content

Commit 3da6798

Browse files
committedMar 18, 2025··
Remove all examples/references to Docker Hub
Signed-off-by: Connor Catlett <conncatl@amazon.com>
1 parent 9e4030d commit 3da6798

File tree

12 files changed

+16
-16
lines changed

12 files changed

+16
-16
lines changed
 

‎Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# See
1616
# https://docs.docker.com/engine/reference/builder/#automatic-platform-args-in-the-global-scope
1717
# for info on BUILDPLATFORM, TARGETOS, TARGETARCH, etc.
18-
FROM --platform=$BUILDPLATFORM golang:1.24 AS builder
18+
FROM --platform=$BUILDPLATFORM public.ecr.aws/docker/library/golang:1.24 AS builder
1919
WORKDIR /go/src/github.com/kubernetes-sigs/aws-ebs-csi-driver
2020
RUN go env -w GOCACHE=/gocache GOMODCACHE=/gomodcache
2121
COPY go.* .

‎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)
Please sign in to comment.