Skip to content

Commit

Permalink
fix(authelia): argon2 memory linked to parallelism (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-elliott authored Oct 23, 2022
1 parent 7dc7cd7 commit f966390
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.44
version: 0.8.45
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 @@ -136,7 +136,7 @@ data:
{{- else }}
memory: {{ $auth.file.password.argon2.memory | default 65536 }}
{{- end }}
parallelism: {{ $auth.file.password.memory | default $auth.file.password.argon2.memory | default 4 }}
parallelism: {{ $auth.file.password.parallelism | default $auth.file.password.argon2.parallelism | default 4 }}
key_length: {{ $auth.file.password.key_length | default $auth.file.password.argon2.key_length | default 32 }}
salt_length: {{ $auth.file.password.salt_length | default $auth.file.password.argon2.salt_length | default 16 }}
scrypt:
Expand Down

0 comments on commit f966390

Please sign in to comment.