File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
name : authelia
3
- version : 0.10.3
3
+ version : 0.10.4
4
4
kubeVersion : " >= 1.13.0-0"
5
5
description : Authelia is a Single Sign-On Multi-Factor portal for web apps
6
6
type : application
Original file line number Diff line number Diff line change @@ -238,6 +238,10 @@ spec:
238
238
{{- with $mountPropagation := .Values.persistence.mountPropagation }}
239
239
mountPropagation : {{ $mountPropagation }}
240
240
{{- end }}
241
+ {{- else if and (eq (len .Values.pod.extraVolumes) 0) (eq (len .Values.pod.extraVolumeMounts) 0) }}
242
+ - mountPath : /config
243
+ name : authelia
244
+ readOnly : false
241
245
{{- end }}
242
246
{{- if (include "authelia.enabled.configMap" .) }}
243
247
- mountPath : /configuration.yaml
@@ -282,6 +286,10 @@ spec:
282
286
- name : authelia
283
287
persistentVolumeClaim :
284
288
claimName : {{ default (include "authelia.name" .) .Values.persistence.existingClaim }}
289
+ {{- else if and (eq (len .Values.pod.extraVolumes) 0) (eq (len .Values.pod.extraVolumeMounts) 0) }}
290
+ - name : authelia
291
+ emptyDir :
292
+ sizeLimit : 100Mi
285
293
{{- end }}
286
294
{{- if (include "authelia.enabled.configMap" .) }}
287
295
- name : config
You can’t perform that action at this time.
0 commit comments