Skip to content

Commit

Permalink
fix(authelia): sha2crypt iterations incorrectly rendered (#189)
Browse files Browse the repository at this point in the history
* fix(authelia): sha2crypt iterations incorrectly rendered

* fix: remove change to sha2crypt salt line

* fix: reduce to absolute minimal change

* fix: missing default
  • Loading branch information
leocov-dev authored Nov 20, 2022
1 parent f966390 commit 887bbf6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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.8.45
version: 0.8.46
kubeVersion: ">= 1.13.0-0"
description: Authelia is a Single Sign-On Multi-Factor portal for web apps
type: application
Expand Down
2 changes: 1 addition & 1 deletion charts/authelia/templates/configMap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ data:
salt_length: {{ $auth.file.password.pbkdf2.salt_length | default 16 }}
sha2crypt:
variant: {{ $auth.file.password.sha2crypt.variant | default "sha512" | squote }}
iterations: {{ $auth.file.password.iterations | default $auth.file.password.sha2crypt.iterations | default "sha512" | squote }}
iterations: {{ $auth.file.password.iterations | default $auth.file.password.sha2crypt.iterations | default 50000 }}
salt_length: {{ $auth.file.password.salt_length | default $auth.file.password.sha2crypt.salt_length | default 16 }}
bcrypt:
variant: {{ $auth.file.password.bcrypt.variant | default "standard" | squote }}
Expand Down

0 comments on commit 887bbf6

Please sign in to comment.