Skip to content

Commit

Permalink
fix: migrate from k8s.gcr.io to registry.k8s.io
Browse files Browse the repository at this point in the history
Signed-off-by: Waleed Malik <[email protected]>
  • Loading branch information
ahmedwaleedmalik authored and songjiaxun committed Mar 16, 2023
1 parent d7a7244 commit fb1f2b2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cmd/csi_driver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ADD . .
RUN make driver BINDIR=/bin

# Start from Kubernetes Debian base.
FROM k8s.gcr.io/build-image/debian-base:buster-v1.9.0 as debian
FROM registry.k8s.io/build-image/debian-base:buster-v1.9.0 as debian
# Install necessary dependencies
RUN clean-install mount bash

Expand Down
6 changes: 3 additions & 3 deletions deploy/base/controller/controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spec:
volumeMounts:
- mountPath: /csi
name: socket-dir
image: k8s.gcr.io/sig-storage/livenessprobe
image: registry.k8s.io/sig-storage/livenessprobe
imagePullPolicy: IfNotPresent
args:
- --csi-address=/csi/csi.sock
Expand All @@ -50,7 +50,7 @@ spec:
cpu: 10m
memory: 20Mi
- name: csi-external-provisioner
image: k8s.gcr.io/sig-storage/csi-provisioner
image: registry.k8s.io/sig-storage/csi-provisioner
imagePullPolicy: IfNotPresent
args:
- "--v=5"
Expand Down Expand Up @@ -125,4 +125,4 @@ spec:
mountPath: /csi
volumes:
- name: socket-dir
emptyDir: {}
emptyDir: {}
2 changes: 1 addition & 1 deletion deploy/base/node/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ spec:
capabilities:
drop:
- all
image: k8s.gcr.io/sig-storage/csi-node-driver-registrar
image: registry.k8s.io/sig-storage/csi-node-driver-registrar
imagePullPolicy: IfNotPresent
args:
- "--v=5"
Expand Down
6 changes: 3 additions & 3 deletions deploy/images/stable/image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ kind: ImageTagTransformer
metadata:
name: imagetag-livenessprobe
imageTag:
name: k8s.gcr.io/sig-storage/livenessprobe
name: registry.k8s.io/sig-storage/livenessprobe
newTag: "v2.9.0"
---

Expand All @@ -26,7 +26,7 @@ kind: ImageTagTransformer
metadata:
name: imagetag-csi-provisioner
imageTag:
name: k8s.gcr.io/sig-storage/csi-provisioner
name: registry.k8s.io/sig-storage/csi-provisioner
newTag: "v3.4.0"
---

Expand All @@ -35,7 +35,7 @@ kind: ImageTagTransformer
metadata:
name: imagetag-csi-node-registrar
imageTag:
name: k8s.gcr.io/sig-storage/csi-node-driver-registrar
name: registry.k8s.io/sig-storage/csi-node-driver-registrar
newTag: "v2.7.0"
---

Expand Down

0 comments on commit fb1f2b2

Please sign in to comment.