From 1e04b326307e684c760bd95196fa13091bb9d444 Mon Sep 17 00:00:00 2001 From: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Date: Wed, 8 Mar 2023 22:40:12 +0200 Subject: [PATCH] fix(authelia): indent priv key (#7770) --- charts/enterprise/authelia/Chart.yaml | 2 +- charts/enterprise/authelia/templates/_secrets.tpl | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/charts/enterprise/authelia/Chart.yaml b/charts/enterprise/authelia/Chart.yaml index 28c73a46813..ba91f5de0e0 100644 --- a/charts/enterprise/authelia/Chart.yaml +++ b/charts/enterprise/authelia/Chart.yaml @@ -36,7 +36,7 @@ sources: - https://github.com/authelia/chartrepo - https://github.com/authelia/authelia type: application -version: 15.0.9 +version: 15.0.10 annotations: truecharts.org/catagories: | - security diff --git a/charts/enterprise/authelia/templates/_secrets.tpl b/charts/enterprise/authelia/templates/_secrets.tpl index 29023561612..14ed88d973d 100644 --- a/charts/enterprise/authelia/templates/_secrets.tpl +++ b/charts/enterprise/authelia/templates/_secrets.tpl @@ -43,12 +43,11 @@ data: STORAGE_PASSWORD: {{ $.Values.cnpg.main.creds.password | trimAll "\"" }} REDIS_PASSWORD: {{ .Values.redis.creds.redisPassword | trimAll "\"" }} - {{- if .Values.redisProvider.high_availability.enabled}} + {{- if .Values.redisProvider.high_availability.enabled }} REDIS_SENTINEL_PASSWORD: {{ .Values.redis.sentinelPassword | trimAll "\"" }} {{- end }} - {{- if .Values.identity_providers.oidc.enabled }} - OIDC_PRIVATE_KEY: {{ $oidckey }} + OIDC_PRIVATE_KEY: | + {{- $oidckey | nindent 4 }} OIDC_HMAC_SECRET: {{ $oidcsecret }} - {{- end }} {{- end -}}