From 260ee0ee194fbfaaa36cc0f7a2f6e06cef86eff4 Mon Sep 17 00:00:00 2001 From: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Date: Sun, 8 Oct 2023 19:21:44 +0300 Subject: [PATCH] chore(authelia): dont quote bools --- charts/enterprise/authelia/Chart.yaml | 2 +- charts/enterprise/authelia/templates/_configmap.tpl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/enterprise/authelia/Chart.yaml b/charts/enterprise/authelia/Chart.yaml index 4317a4c9d20..9013482d3bd 100644 --- a/charts/enterprise/authelia/Chart.yaml +++ b/charts/enterprise/authelia/Chart.yaml @@ -35,7 +35,7 @@ sources: - https://github.com/authelia/chartrepo - https://github.com/authelia/authelia type: application -version: 19.0.2 +version: 19.0.3 annotations: truecharts.org/catagories: | - security diff --git a/charts/enterprise/authelia/templates/_configmap.tpl b/charts/enterprise/authelia/templates/_configmap.tpl index 1b1b1ba9707..92fcd45a4a2 100644 --- a/charts/enterprise/authelia/templates/_configmap.tpl +++ b/charts/enterprise/authelia/templates/_configmap.tpl @@ -223,8 +223,8 @@ data: identifier: {{ $notifier.smtp.identifier | quote }} subject: {{ $notifier.smtp.subject | quote }} startup_check_address: {{ $notifier.smtp.startup_check_address | quote }} - disable_require_tls: {{ $notifier.smtp.disable_require_tls | quote }} - disable_html_emails: {{ $notifier.smtp.disable_html_emails | quote }} + disable_require_tls: {{ $notifier.smtp.disable_require_tls }} + disable_html_emails: {{ $notifier.smtp.disable_html_emails }} tls: server_name: {{ $notifier.smtp.tls.server_name | default $notifier.smtp.host }} minimum_version: {{ $notifier.smtp.tls.minimum_version | default "TLS1.2" }}