Skip to content

Commit

Permalink
fix(authelia): extraVolumes and extraVolumeMounts indentation (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
skuethe authored May 27, 2021
1 parent fa3bcf5 commit 1d62039
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/authelia/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: authelia
version: 0.4.10
version: 0.4.11
kubeVersion: ">= 1.13.0-0"
description: Authelia is a Single Sign-On Multi-Factor portal for web apps
type: application
Expand Down
10 changes: 5 additions & 5 deletions charts/authelia/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ spec:
readOnly: true
{{- end }}
{{- with $mounts := .Values.pod.extraVolumeMounts }}
{{ toYaml $mounts | indent 12 }}
{{- toYaml $mounts | nindent 8 }}
{{- end }}
{{- with $context := .Values.pod.securityContext.pod }}
securityContext: {{ toYaml $context | nindent 12 }}
Expand Down Expand Up @@ -247,7 +247,7 @@ spec:
- name: certificates
secret:
secretName: {{ include "authelia.names.certificatesSecret" . }}
{{- end }}
{{- with .Values.pod.extraVolumes }}
{{ toYaml . | indent 6 }}
{{- end }}
{{- end }}
{{- with .Values.pod.extraVolumes }}
{{- toYaml . | nindent 6 }}
{{- end }}

0 comments on commit 1d62039

Please sign in to comment.