From 1d6203936a977eaf2f73dd419d5f58fec2e5d827 Mon Sep 17 00:00:00 2001 From: skuethe <56306041+skuethe@users.noreply.github.com> Date: Thu, 27 May 2021 12:03:57 +0000 Subject: [PATCH] fix(authelia): extraVolumes and extraVolumeMounts indentation (#73) --- charts/authelia/Chart.yaml | 2 +- charts/authelia/templates/deployment.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/charts/authelia/Chart.yaml b/charts/authelia/Chart.yaml index 1badabc..433bd68 100644 --- a/charts/authelia/Chart.yaml +++ b/charts/authelia/Chart.yaml @@ -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 diff --git a/charts/authelia/templates/deployment.yaml b/charts/authelia/templates/deployment.yaml index f2ddf18..92f731f 100644 --- a/charts/authelia/templates/deployment.yaml +++ b/charts/authelia/templates/deployment.yaml @@ -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 }} @@ -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 }}