Skip to content

Commit f051c4d

Browse files
committed
feat(csi): update csi sidecars
- update sig-storage/csi-node-driver-registrar image to v2.8.0 - update sig-storage/csi-provisioner to v3.5.0 - update sig-storage/csi-attacher to v4.3.0 - update sig-storage/csi-resizer to v1.8.0 - update sig-storage/livenessprobe to v2.10.0 - use spec.serviceAccountName instead of spec.serviceAccount - use registry.k8s.io instead of k8s.gcr.io Signed-off-by: Niladri Halder <[email protected]>
1 parent a280a29 commit f051c4d

File tree

9 files changed

+4370
-311
lines changed

9 files changed

+4370
-311
lines changed

deploy/crds/openebs.io_jivavolumepolicies.yaml

Lines changed: 1052 additions & 60 deletions
Large diffs are not rendered by default.

deploy/crds/openebs.io_jivavolumes.yaml

Lines changed: 1108 additions & 68 deletions
Large diffs are not rendered by default.

deploy/helm/charts/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ description: Helm chart for OpenEBS Jiva Operator. Jiva provides highly availabl
44
type: application
55
# This is the chart version. This version number should be incremented each time you make changes
66
# to the chart and its templates, including the app version.
7-
version: 3.4.0
7+
version: 3.5.0
88
# This is the version number of the application being deployed. This version number should be
99
# incremented each time you make changes to the application.
10-
appVersion: 3.4.0
10+
appVersion: 3.5.0
1111
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/openebs/icon/color/openebs-icon-color.png
1212
home: http://www.openebs.io/
1313
keywords:

deploy/helm/charts/README.md

Lines changed: 24 additions & 29 deletions
Large diffs are not rendered by default.

deploy/helm/charts/templates/csi-controller.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ spec:
2222
{{- end }}
2323
spec:
2424
priorityClassName: {{ template "jiva.csiController.priorityClassName" . }}
25-
serviceAccount: {{ .Values.serviceAccount.csiController.name }}
25+
serviceAccountName: {{ .Values.serviceAccount.csiController.name }}
2626
containers:
2727
- name: {{ .Values.csiController.resizer.name }}
2828
image: "{{ .Values.csiController.resizer.image.registry }}{{ .Values.csiController.resizer.image.repository }}:{{ .Values.csiController.resizer.image.tag }}"

deploy/helm/charts/templates/csi-node.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
{{- end }}
2121
spec:
2222
priorityClassName: {{ template "jiva.csiNode.priorityClassName" . }}
23-
serviceAccount: {{ .Values.serviceAccount.csiNode.name }}
23+
serviceAccountName: {{ .Values.serviceAccount.csiNode.name }}
2424
hostNetwork: true
2525
containers:
2626
- name: {{ .Values.csiNode.driverRegistrar.name }}

deploy/helm/charts/values.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ csiController:
7070
repository: sig-storage/csi-attacher
7171
pullPolicy: IfNotPresent
7272
# Overrides the image tag whose default is the chart appVersion.
73-
tag: v3.1.0
73+
tag: v4.3.0
7474
livenessprobe:
7575
name: "liveness-probe"
7676
image:
@@ -80,7 +80,7 @@ csiController:
8080
repository: sig-storage/livenessprobe
8181
pullPolicy: IfNotPresent
8282
# Overrides the image tag whose default is the chart appVersion.
83-
tag: v2.3.0
83+
tag: v2.10.0
8484
provisioner:
8585
name: "csi-provisioner"
8686
image:
@@ -90,7 +90,7 @@ csiController:
9090
repository: sig-storage/csi-provisioner
9191
pullPolicy: IfNotPresent
9292
# Overrides the image tag whose default is the chart appVersion.
93-
tag: v3.0.0
93+
tag: v3.5.0
9494
resizer:
9595
name: "csi-resizer"
9696
image:
@@ -100,7 +100,7 @@ csiController:
100100
repository: sig-storage/csi-resizer
101101
pullPolicy: IfNotPresent
102102
# Overrides the image tag whose default is the chart appVersion.
103-
tag: v1.2.0
103+
tag: v1.8.0
104104
annotations: {}
105105
podAnnotations: {}
106106
podLabels: {}
@@ -135,7 +135,7 @@ csiNode:
135135
repository: sig-storage/csi-node-driver-registrar
136136
pullPolicy: IfNotPresent
137137
# Overrides the image tag whose default is the chart appVersion.
138-
tag: v2.3.0
138+
tag: v2.8.0
139139
livenessprobe:
140140
name: "liveness-probe"
141141
image:
@@ -145,7 +145,7 @@ csiNode:
145145
repository: sig-storage/livenessprobe
146146
pullPolicy: IfNotPresent
147147
# Overrides the image tag whose default is the chart appVersion.
148-
tag: v2.3.0
148+
tag: v2.10.0
149149
updateStrategy:
150150
type: RollingUpdate
151151
annotations: {}

deploy/jiva-operator.yaml

Lines changed: 2168 additions & 136 deletions
Large diffs are not rendered by default.

deploy/yamls/csi.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,10 @@ spec:
124124
openebs.io/version: dev
125125
spec:
126126
priorityClassName: openebs-jiva-csi-controller-critical
127-
serviceAccount: openebs-jiva-csi-controller-sa
127+
serviceAccountName: openebs-jiva-csi-controller-sa
128128
containers:
129129
- name: csi-provisioner
130-
image: k8s.gcr.io/sig-storage/csi-provisioner:v3.0.0
130+
image: registry.k8s.io/sig-storage/csi-provisioner:v3.5.0
131131
args:
132132
- "--csi-address=$(ADDRESS)"
133133
- "--v=5"
@@ -147,7 +147,7 @@ spec:
147147
- name: socket-dir
148148
mountPath: /var/lib/csi/sockets/pluginproxy/
149149
- name: csi-attacher
150-
image: k8s.gcr.io/sig-storage/csi-attacher:v3.1.0
150+
image: registry.k8s.io/sig-storage/csi-attacher:v4.3.0
151151
args:
152152
- "--v=5"
153153
- "--csi-address=$(ADDRESS)"
@@ -190,7 +190,7 @@ spec:
190190
- name: socket-dir
191191
mountPath: /var/lib/csi/sockets/pluginproxy/
192192
- name: csi-resizer
193-
image: k8s.gcr.io/sig-storage/csi-resizer:v1.2.0
193+
image: registry.k8s.io/sig-storage/csi-resizer:v1.8.0
194194
args:
195195
- "--v=5"
196196
- "--csi-address=$(ADDRESS)"
@@ -205,7 +205,7 @@ spec:
205205
volumeMounts:
206206
- mountPath: /csi
207207
name: socket-dir
208-
image: k8s.gcr.io/sig-storage/livenessprobe:v2.3.0
208+
image: registry.k8s.io/sig-storage/livenessprobe:v2.3.0
209209
args:
210210
- "--csi-address=/csi/csi.sock"
211211
volumes:
@@ -350,11 +350,11 @@ spec:
350350
openebs.io/version: dev
351351
spec:
352352
priorityClassName: openebs-jiva-csi-node-critical
353-
serviceAccount: openebs-jiva-csi-node-sa
353+
serviceAccountName: openebs-jiva-csi-node-sa
354354
hostNetwork: true
355355
containers:
356356
- name: csi-node-driver-registrar
357-
image: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.3.0
357+
image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.8.0
358358
args:
359359
- "--v=5"
360360
- "--csi-address=$(ADDRESS)"
@@ -435,7 +435,7 @@ spec:
435435
mountPath: /sbin/iscsiadm
436436
subPath: iscsiadm
437437
- name: liveness-probe
438-
image: k8s.gcr.io/sig-storage/livenessprobe:v2.3.0
438+
image: registry.k8s.io/sig-storage/livenessprobe:v2.10.0
439439
args:
440440
- "--csi-address=/plugin/csi.sock"
441441
volumeMounts:

0 commit comments

Comments
 (0)