File tree 4 files changed +13
-13
lines changed
deployments/helm/eosxd-csi
4 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v1
2
- appVersion : " latest "
2
+ appVersion : " v1.4.0 "
3
3
description : A Helm chart to deploy the eosxd-CSI Plugin
4
4
name : eosxd-csi
5
- version : " 1.0.0 "
5
+ version : 1.4.0
Original file line number Diff line number Diff line change 21
21
serviceAccount : {{ include "eosxd-csi.serviceAccountName.controllerplugin" . }}
22
22
containers :
23
23
- name : provisioner
24
- image : {{ .Values.controllerplugin.provisioner.image.repository }}:{{ .Values.controllerplugin.provisioner.image.tag }}
24
+ image : {{ .Values.controllerplugin.provisioner.image.repository }}:{{ .Values.controllerplugin.provisioner.image.tag | default .Chart.AppVersion }}
25
25
imagePullPolicy : {{ .Values.controllerplugin.provisioner.image.pullPolicy }}
26
26
args :
27
27
- -v={{ .Values.logVerbosityLevel }}
37
37
resources : {{ toYaml . | nindent 12 }}
38
38
{{- end }}
39
39
- name : controllerplugin
40
- image : {{ .Values.controllerplugin.plugin.image.repository }}:{{ .Values.controllerplugin.plugin.image.tag }}
40
+ image : {{ .Values.controllerplugin.plugin.image.repository }}:{{ .Values.controllerplugin.plugin.image.tag | default .Chart.AppVersion }}
41
41
imagePullPolicy : {{ .Values.controllerplugin.plugin.image.pullPolicy }}
42
42
command : [/csi-driver]
43
43
args :
Original file line number Diff line number Diff line change 45
45
resources : {{ toYaml . | nindent 12 }}
46
46
{{- end }}
47
47
- name : nodeplugin
48
- image : {{ .Values.nodeplugin.plugin.image.repository }}:{{ .Values.nodeplugin.plugin.image.tag }}
48
+ image : {{ .Values.nodeplugin.plugin.image.repository }}:{{ .Values.nodeplugin.plugin.image.tag | default .Chart.AppVersion }}
49
49
command : [/csi-driver]
50
50
args :
51
51
- -v={{ .Values.logVerbosityLevel }}
92
92
resources : {{ toYaml . | nindent 12 }}
93
93
{{- end }}
94
94
- name : automount
95
- image : {{ .Values.nodeplugin.automount.image.repository }}:{{ .Values.nodeplugin.automount.image.tag }}
95
+ image : {{ .Values.nodeplugin.automount.image.repository }}:{{ .Values.nodeplugin.automount.image.tag | default .Chart.AppVersion }}
96
96
command : [/automount-runner]
97
97
args :
98
98
- -v={{ .Values.logVerbosityLevel }}
@@ -121,7 +121,7 @@ spec:
121
121
resources : {{ toYaml . | nindent 12 }}
122
122
{{- end }}
123
123
- name : mountreconciler
124
- image : {{ .Values.nodeplugin.mountreconciler.image.repository }}:{{ .Values.nodeplugin.mountreconciler.image.tag }}
124
+ image : {{ .Values.nodeplugin.mountreconciler.image.repository }}:{{ .Values.nodeplugin.mountreconciler.image.tag | default .Chart.AppVersion }}
125
125
command : [/mount-reconciler]
126
126
args :
127
127
- -v={{ .Values.logVerbosityLevel }}
Original file line number Diff line number Diff line change @@ -192,7 +192,7 @@ nodeplugin:
192
192
plugin :
193
193
image :
194
194
repository : registry.cern.ch/kubernetes/eosxd-csi
195
- tag : v1.1.1
195
+ tag : " " # If no tag specified default to Chart AppVersion.
196
196
pullPolicy : IfNotPresent
197
197
resources : {}
198
198
# Extra volume mounts to append to nodeplugin's
@@ -205,7 +205,7 @@ nodeplugin:
205
205
automount :
206
206
image :
207
207
repository : registry.cern.ch/kubernetes/eosxd-csi
208
- tag : v1.1.1
208
+ tag : " " # If no tag specified default to Chart AppVersion.
209
209
pullPolicy : IfNotPresent
210
210
resources : {}
211
211
# Extra volume mounts to append to nodeplugin's
@@ -226,7 +226,7 @@ nodeplugin:
226
226
mountreconciler :
227
227
image :
228
228
repository : registry.cern.ch/kubernetes/eosxd-csi
229
- tag : v1.1.1
229
+ tag : " " # If no tag specified default to Chart AppVersion.
230
230
pullPolicy : IfNotPresent
231
231
resources : {}
232
232
# Extra volume mounts to append to nodeplugin's
@@ -239,7 +239,7 @@ nodeplugin:
239
239
registrar :
240
240
image :
241
241
repository : registry.k8s.io/sig-storage/csi-node-driver-registrar
242
- tag : v2.5 .1
242
+ tag : v2.10 .1
243
243
pullPolicy : IfNotPresent
244
244
resources : {}
245
245
@@ -300,7 +300,7 @@ controllerplugin:
300
300
plugin :
301
301
image :
302
302
repository : registry.cern.ch/kubernetes/eosxd-csi
303
- tag : v1.1.1
303
+ tag : " " # If no tag specified default to Chart AppVersion.
304
304
pullPolicy : IfNotPresent
305
305
resources : {}
306
306
extraVolumeMounts :
@@ -311,7 +311,7 @@ controllerplugin:
311
311
provisioner :
312
312
image :
313
313
repository : k8s.gcr.io/sig-storage/csi-provisioner
314
- tag : v3.2 .1
314
+ tag : v4.0 .1
315
315
pullPolicy : IfNotPresent
316
316
resources : {}
317
317
You can’t perform that action at this time.
0 commit comments