Skip to content

Commit

Permalink
Switch CSI sidecar image repository to gcr (kubernetes#1337)
Browse files Browse the repository at this point in the history
Signed-off-by: ialidzhikov <[email protected]>
  • Loading branch information
ialidzhikov authored Dec 8, 2020
1 parent 0f36d1f commit 5cd19a7
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion charts/cinder-csi-plugin/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
appVersion: latest
description: Cinder CSI Chart for OpenStack
name: openstack-cinder-csi
version: 1.2.8
version: 1.2.9
home: https://github.com/kubernetes/cloud-provider-openstack
icon: https://github.com/kubernetes/kubernetes/blob/master/logo/logo.png
maintainers:
Expand Down
12 changes: 6 additions & 6 deletions charts/cinder-csi-plugin/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,32 +5,32 @@ 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
livenessprobe:
image:
repository: quay.io/k8scsi/livenessprobe
repository: k8s.gcr.io/sig-storage/livenessprobe
tag: v2.1.0
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
10 changes: 5 additions & 5 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 All @@ -83,7 +83,7 @@ spec:
- name: socket-dir
mountPath: /var/lib/csi/sockets/pluginproxy/
- name: liveness-probe
image: quay.io/k8scsi/livenessprobe:v2.1.0
image: k8s.gcr.io/sig-storage/livenessprobe:v2.1.0
args:
- "--csi-address=$(ADDRESS)"
env:
Expand Down
4 changes: 2 additions & 2 deletions 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 All @@ -45,7 +45,7 @@ spec:
- name: registration-dir
mountPath: /registration
- name: liveness-probe
image: quay.io/k8scsi/livenessprobe:v2.1.0
image: k8s.gcr.io/sig-storage/livenessprobe:v2.1.0
args:
- --csi-address=/csi/csi.sock
volumeMounts:
Expand Down

0 comments on commit 5cd19a7

Please sign in to comment.