Skip to content

Commit c77cc6c

Browse files
committed
csi: use GA versions of sidecars everywhere
The deployments for nvmeof and nfs still used the :canary images for the external-provisioner and external-resizer. The latest releases of those images have support for secrets in the ControllerModifyVolume request, so these can be used instead. Signed-off-by: Niels de Vos <ndevos@ibm.com>
1 parent 9af58c4 commit c77cc6c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

deploy/nfs/kubernetes/csi-nfsplugin-provisioner.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ spec:
7373
- name: keys-tmp-dir
7474
mountPath: /tmp/csi/keys
7575
- name: csi-provisioner
76-
image: gcr.io/k8s-staging-sig-storage/csi-provisioner:canary
76+
image: registry.k8s.io/sig-storage/csi-provisioner:v6.2.0
7777
args:
7878
- "--csi-address=$(ADDRESS)"
7979
- "--v=1"
@@ -121,7 +121,7 @@ spec:
121121
- name: socket-dir
122122
mountPath: /csi
123123
- name: csi-resizer
124-
image: gcr.io/k8s-staging-sig-storage/csi-resizer:canary
124+
image: registry.k8s.io/sig-storage/csi-resizer:v2.1.0
125125
args:
126126
- "--csi-address=$(ADDRESS)"
127127
- "--v=1"

deploy/nvmeof/kubernetes/csi-nvmeofplugin-provisioner.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ spec:
7979
mountPath: /run/secrets/tokens
8080
readOnly: true
8181
- name: csi-provisioner
82-
image: gcr.io/k8s-staging-sig-storage/csi-provisioner:canary
82+
image: registry.k8s.io/sig-storage/csi-provisioner:v6.2.0
8383
args:
8484
- "--csi-address=$(ADDRESS)"
8585
- "--v=1"
@@ -108,7 +108,7 @@ spec:
108108
- name: socket-dir
109109
mountPath: /csi
110110
- name: csi-resizer
111-
image: gcr.io/k8s-staging-sig-storage/csi-resizer:canary
111+
image: registry.k8s.io/sig-storage/csi-resizer:v2.1.0
112112
args:
113113
- "--csi-address=$(ADDRESS)"
114114
- "--v=1"

0 commit comments

Comments
 (0)