Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[cinder-csi-plugin] Switch CSI sidecar image repository to gcr #1337

Merged
merged 1 commit into from
Dec 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this works

# docker pull k8s.gcr.io/sig-storage/csi-provisioner:v1.6.1
v1.6.1: Pulling from sig-storage/csi-provisioner
Digest: sha256:3b9b5ae677fd74de3b1cde5d3606a970f615b598730aa003c0f52e755c78862e
Status: Downloaded newer image for k8s.gcr.io/sig-storage/csi-provisioner:v1.6.1
k8s.gcr.io/sig-storage/csi-provisioner:v1.6.1

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