Skip to content

Commit

Permalink
Switch CSI sidecar image repository to gcr
Browse files Browse the repository at this point in the history
Signed-off-by: ialidzhikov <[email protected]>
  • Loading branch information
ialidzhikov committed Dec 7, 2020
1 parent c039907 commit 262664c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions charts/cinder-csi-plugin/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,27 @@ timeout: 3m
csi:
attacher:
image:
repository: quay.io/k8scsi/csi-attacher
repository: k8s.gcr.io/sig-storage/csi-attacher
tag: v2.2.1
pullPolicy: IfNotPresent
provisioner:
image:
repository: quay.io/k8scsi/csi-provisioner
repository: k8s.gcr.io/sig-storage/csi-provisioner
tag: v1.6.1
pullPolicy: IfNotPresent
snapshotter:
image:
repository: quay.io/k8scsi/csi-snapshotter
repository: k8s.gcr.io/sig-storage/csi-snapshotter
tag: v2.1.2
pullPolicy: IfNotPresent
resizer:
image:
repository: quay.io/k8scsi/csi-resizer
repository: k8s.gcr.io/sig-storage/csi-resizer
tag: v0.5.1
pullPolicy: IfNotPresent
nodeDriverRegistrar:
image:
repository: quay.io/k8scsi/csi-node-driver-registrar
repository: k8s.gcr.io/sig-storage/csi-node-driver-registrar
tag: v1.3.0
pullPolicy: IfNotPresent
plugin:
Expand Down
8 changes: 4 additions & 4 deletions manifests/cinder-csi-plugin/cinder-csi-controllerplugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spec:
serviceAccount: csi-cinder-controller-sa
containers:
- name: csi-attacher
image: quay.io/k8scsi/csi-attacher:v2.2.1
image: k8s.gcr.io/sig-storage/csi-attacher:v2.2.1
args:
- "--csi-address=$(ADDRESS)"
- "--timeout=3m"
Expand All @@ -47,7 +47,7 @@ spec:
- name: socket-dir
mountPath: /var/lib/csi/sockets/pluginproxy/
- name: csi-provisioner
image: quay.io/k8scsi/csi-provisioner:v1.6.1
image: k8s.gcr.io/sig-storage/csi-provisioner:v1.6.1
args:
- "--csi-address=$(ADDRESS)"
- "--timeout=3m"
Expand All @@ -59,7 +59,7 @@ spec:
- name: socket-dir
mountPath: /var/lib/csi/sockets/pluginproxy/
- name: csi-snapshotter
image: quay.io/k8scsi/csi-snapshotter:v2.1.2
image: k8s.gcr.io/sig-storage/csi-snapshotter:v2.1.2
args:
- "--csi-address=$(ADDRESS)"
- "--timeout=3m"
Expand All @@ -71,7 +71,7 @@ spec:
- mountPath: /var/lib/csi/sockets/pluginproxy/
name: socket-dir
- name: csi-resizer
image: quay.io/k8scsi/csi-resizer:v0.5.1
image: k8s.gcr.io/sig-storage/csi-resizer:v0.5.1
args:
- "--csi-address=$(ADDRESS)"
- "--csiTimeout=3m"
Expand Down
2 changes: 1 addition & 1 deletion manifests/cinder-csi-plugin/cinder-csi-nodeplugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
hostNetwork: true
containers:
- name: node-driver-registrar
image: quay.io/k8scsi/csi-node-driver-registrar:v1.3.0
image: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v1.3.0
args:
- "--csi-address=$(ADDRESS)"
- "--kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)"
Expand Down

0 comments on commit 262664c

Please sign in to comment.