Skip to content

Commit 2e7a96e

Browse files
authored
update CSI cinder dependency container version (currency) (kubernetes#2024)
1 parent 1117fa2 commit 2e7a96e

File tree

4 files changed

+15
-13
lines changed

4 files changed

+15
-13
lines changed

charts/cinder-csi-plugin/templates/controllerplugin-deployment.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ spec:
3232
- "--csi-address=$(ADDRESS)"
3333
- "--timeout={{ .Values.timeout }}"
3434
- "--leader-election=true"
35+
- "--default-fstype=ext4"
3536
env:
3637
- name: ADDRESS
3738
value: /var/lib/csi/sockets/pluginproxy/csi.sock

charts/cinder-csi-plugin/values.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,32 +8,32 @@ csi:
88
attacher:
99
image:
1010
repository: k8s.gcr.io/sig-storage/csi-attacher
11-
tag: v3.4.0
11+
tag: v4.0.0
1212
pullPolicy: IfNotPresent
1313
resources: {}
1414
provisioner:
1515
topology: "true"
1616
image:
1717
repository: k8s.gcr.io/sig-storage/csi-provisioner
18-
tag: v3.1.0
18+
tag: v3.4.0
1919
pullPolicy: IfNotPresent
2020
resources: {}
2121
snapshotter:
2222
image:
2323
repository: k8s.gcr.io/sig-storage/csi-snapshotter
24-
tag: v5.0.1
24+
tag: v6.1.0
2525
pullPolicy: IfNotPresent
2626
resources: {}
2727
resizer:
2828
image:
2929
repository: k8s.gcr.io/sig-storage/csi-resizer
30-
tag: v1.4.0
30+
tag: v1.6.0
3131
pullPolicy: IfNotPresent
3232
resources: {}
3333
livenessprobe:
3434
image:
3535
repository: k8s.gcr.io/sig-storage/livenessprobe
36-
tag: v2.6.0
36+
tag: v2.8.0
3737
pullPolicy: IfNotPresent
3838
failureThreshold: 5
3939
initialDelaySeconds: 10
@@ -43,7 +43,7 @@ csi:
4343
nodeDriverRegistrar:
4444
image:
4545
repository: k8s.gcr.io/sig-storage/csi-node-driver-registrar
46-
tag: v2.5.0
46+
tag: v2.6.2
4747
pullPolicy: IfNotPresent
4848
resources: {}
4949
plugin:
@@ -127,7 +127,7 @@ storageClass:
127127
# parameters:
128128
# type: SAS
129129
# ---
130-
# apiVersion: snapshot.storage.k8s.io/v1beta1
130+
# apiVersion: snapshot.storage.k8s.io/v1
131131
# kind: VolumeSnapshotClass
132132
# metadata:
133133
# name: csi-cinder-snapclass

manifests/cinder-csi-plugin/cinder-csi-controllerplugin.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,12 @@ spec:
2525
serviceAccount: csi-cinder-controller-sa
2626
containers:
2727
- name: csi-attacher
28-
image: k8s.gcr.io/sig-storage/csi-attacher:v3.4.0
28+
image: k8s.gcr.io/sig-storage/csi-attacher:v4.0.0
2929
args:
3030
- "--csi-address=$(ADDRESS)"
3131
- "--timeout=3m"
3232
- "--leader-election=true"
33+
- "--default-fstype=ext4"
3334
env:
3435
- name: ADDRESS
3536
value: /var/lib/csi/sockets/pluginproxy/csi.sock
@@ -38,7 +39,7 @@ spec:
3839
- name: socket-dir
3940
mountPath: /var/lib/csi/sockets/pluginproxy/
4041
- name: csi-provisioner
41-
image: k8s.gcr.io/sig-storage/csi-provisioner:v3.1.0
42+
image: k8s.gcr.io/sig-storage/csi-provisioner:v3.3.0
4243
args:
4344
- "--csi-address=$(ADDRESS)"
4445
- "--timeout=3m"
@@ -54,7 +55,7 @@ spec:
5455
- name: socket-dir
5556
mountPath: /var/lib/csi/sockets/pluginproxy/
5657
- name: csi-snapshotter
57-
image: k8s.gcr.io/sig-storage/csi-snapshotter:v6.0.1
58+
image: k8s.gcr.io/sig-storage/csi-snapshotter:v6.1.0
5859
args:
5960
- "--csi-address=$(ADDRESS)"
6061
- "--timeout=3m"
@@ -82,7 +83,7 @@ spec:
8283
- name: socket-dir
8384
mountPath: /var/lib/csi/sockets/pluginproxy/
8485
- name: liveness-probe
85-
image: k8s.gcr.io/sig-storage/livenessprobe:v2.7.0
86+
image: k8s.gcr.io/sig-storage/livenessprobe:v2.8.0
8687
args:
8788
- "--csi-address=$(ADDRESS)"
8889
env:

manifests/cinder-csi-plugin/cinder-csi-nodeplugin.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
hostNetwork: true
2222
containers:
2323
- name: node-driver-registrar
24-
image: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.5.1
24+
image: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.6.2
2525
args:
2626
- "--csi-address=$(ADDRESS)"
2727
- "--kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)"
@@ -41,7 +41,7 @@ spec:
4141
- name: registration-dir
4242
mountPath: /registration
4343
- name: liveness-probe
44-
image: k8s.gcr.io/sig-storage/livenessprobe:v2.7.0
44+
image: k8s.gcr.io/sig-storage/livenessprobe:v2.8.0
4545
args:
4646
- --csi-address=/csi/csi.sock
4747
volumeMounts:

0 commit comments

Comments
 (0)