From 3e5d038403205f3fcb1c71c55d03770fb8ed6adf Mon Sep 17 00:00:00 2001 From: Timo Schwarzer Date: Fri, 3 Dec 2021 13:53:32 +0100 Subject: [PATCH] fix(authelia): new totp options keys (#112) Fixes a copy and paste error in the TOTP config. Co-authored-by: James Elliott --- charts/authelia/Chart.yaml | 2 +- charts/authelia/templates/configMap.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/authelia/Chart.yaml b/charts/authelia/Chart.yaml index 349fe69..fff7334 100644 --- a/charts/authelia/Chart.yaml +++ b/charts/authelia/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: authelia -version: 0.7.1 +version: 0.7.2 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/configMap.yaml b/charts/authelia/templates/configMap.yaml index 948dd25..e7db690 100644 --- a/charts/authelia/templates/configMap.yaml +++ b/charts/authelia/templates/configMap.yaml @@ -35,8 +35,8 @@ data: {{- end }} totp: issuer: {{ default .Values.domain .Values.configMap.totp.issuer }} - algorithm: {{ default "sha1" .Values.configMap.totp.issuer }} - digits: {{ default 6 .Values.configMap.totp.issuer }} + algorithm: {{ default "sha1" .Values.configMap.totp.algorithm }} + digits: {{ default 6 .Values.configMap.totp.digits }} period: {{ default 30 .Values.configMap.totp.period }} skew: {{ default 1 .Values.configMap.totp.skew }} ntp: