diff --git a/charts/cinder-csi-plugin/Chart.yaml b/charts/cinder-csi-plugin/Chart.yaml index 843c76d336..671cf1eee4 100644 --- a/charts/cinder-csi-plugin/Chart.yaml +++ b/charts/cinder-csi-plugin/Chart.yaml @@ -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: diff --git a/charts/cinder-csi-plugin/values.yaml b/charts/cinder-csi-plugin/values.yaml index d0a6ee1627..e8bb51fc9b 100644 --- a/charts/cinder-csi-plugin/values.yaml +++ b/charts/cinder-csi-plugin/values.yaml @@ -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: diff --git a/manifests/cinder-csi-plugin/cinder-csi-controllerplugin.yaml b/manifests/cinder-csi-plugin/cinder-csi-controllerplugin.yaml index c2e26f1eda..94055f72b6 100644 --- a/manifests/cinder-csi-plugin/cinder-csi-controllerplugin.yaml +++ b/manifests/cinder-csi-plugin/cinder-csi-controllerplugin.yaml @@ -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" @@ -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" @@ -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" @@ -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" @@ -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: diff --git a/manifests/cinder-csi-plugin/cinder-csi-nodeplugin.yaml b/manifests/cinder-csi-plugin/cinder-csi-nodeplugin.yaml index 93cbc1ef91..c2a94b68b1 100644 --- a/manifests/cinder-csi-plugin/cinder-csi-nodeplugin.yaml +++ b/manifests/cinder-csi-plugin/cinder-csi-nodeplugin.yaml @@ -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)" @@ -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: