Skip to content

Commit

Permalink
feat(authelia): 4.30.3 (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-elliott authored Aug 10, 2021
1 parent 4a83cfd commit 4838e82
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 11 deletions.
4 changes: 2 additions & 2 deletions charts/authelia/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: authelia
version: 0.5.3
version: 0.5.4
kubeVersion: ">= 1.13.0-0"
description: Authelia is a Single Sign-On Multi-Factor portal for web apps
type: application
Expand All @@ -23,6 +23,6 @@ maintainers:
email: [email protected]
url: https://github.com/james-d-elliott
icon: https://avatars2.githubusercontent.com/u/59122411?s=200&v=4
appVersion: 4.30.2
appVersion: 4.30.3
deprecated: false
annotations: {}
19 changes: 14 additions & 5 deletions charts/authelia/templates/configMap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,12 @@ data:
url: {{ $auth.ldap.url }}
timeout: {{ default "5s" $auth.ldap.timeout }}
start_tls: {{ $auth.ldap.start_tls }}
tls: {{ toYaml $auth.ldap.tls | nindent 10 }}
tls:
{{- if hasKey $auth.ldap.tls "server_name" }}
server_name: {{ default $auth.ldap.host $auth.ldap.tls.server_name }}
{{- end }}
minimum_version: {{ default "TLS1.2" $auth.ldap.tls.minimum_version }}
skip_verify: {{ default false $auth.ldap.tls.skip_verify }}
{{- if $auth.ldap.base_dn }}
base_dn: {{ $auth.ldap.base_dn }}
{{- end }}
Expand Down Expand Up @@ -107,8 +112,8 @@ data:
{{- if $session.redis.tls.enabled }}
tls:
server_name: {{ $session.redis.tls.server_name }}
skip_verify: {{ $session.redis.tls.skip_verify }}
minimum_version: {{ default "TLS1.2" $session.redis.tls.minimum_version }}
skip_verify: {{ $session.redis.tls.skip_verify }}
{{- end }}
{{- if $session.redis.high_availability.enabled }}
high_availability:
Expand Down Expand Up @@ -154,17 +159,21 @@ data:
filename: {{ $notifier.filesystem.filename }}
{{- end }}
{{- if $notifier.smtp.enabled }}
smtp:
username: {{ $notifier.smtp.username }}
h
host: {{ $notifier.smtp.host }}
port: {{ default 25 $notifier.smtp.port }}
timeout: {{ default "5s" $notifier.smtp.timeout }}
username: {{ $notifier.smtp.username }}
sender: {{ $notifier.smtp.sender }}
identifier: {{ $notifier.smtp.identifier }}
subject: {{ $notifier.smtp.subject | quote }}
startup_check_address: {{ $notifier.smtp.startup_check_address }}
disable_require_tls: {{ $notifier.smtp.disable_require_tls }}
disable_html_emails: {{ $notifier.smtp.disable_html_emails }}
tls: {{ toYaml $notifier.smtp.tls | nindent 10 }}
tls:
server_name: {{ default $notifier.smtp.host $notifier.smtp.tls.server_name }}
minimum_version: {{ default "TLS1.2" $notifier.smtp.tls.minimum_version }}
skip_verify: {{ default false $notifier.smtp.tls.skip_verify }}
{{- end }}
{{- end }}
{{- if .Values.configMap.identity_providers.oidc.enabled }}
Expand Down
5 changes: 3 additions & 2 deletions charts/authelia/values.local.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ image:
# registry: docker.io
registry: ghcr.io
repository: authelia/authelia
tag: 4.30.2
tag: 4.30.3
pullPolicy: IfNotPresent
pullSecrets: []
# pullSecrets:
Expand Down Expand Up @@ -882,9 +882,10 @@ configMap:
smtp:
enabled: false
enabledSecret: false
username: test
host: smtp.mail.svc.cluster.local
port: 25
timeout: 5s
username: test
sender: [email protected]
## HELO/EHLO Identifier. Some SMTP Servers may reject the default of localhost.
identifier: localhost
Expand Down
5 changes: 3 additions & 2 deletions charts/authelia/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ image:
# registry: docker.io
registry: ghcr.io
repository: authelia/authelia
tag: 4.30.2
tag: 4.30.3
pullPolicy: IfNotPresent
pullSecrets: []
# pullSecrets:
Expand Down Expand Up @@ -880,9 +880,10 @@ configMap:
smtp:
enabled: true
enabledSecret: false
username: test
host: smtp.mail.svc.cluster.local
port: 25
timeout: 5s
username: test
sender: [email protected]
## HELO/EHLO Identifier. Some SMTP Servers may reject the default of localhost.
identifier: localhost
Expand Down

0 comments on commit 4838e82

Please sign in to comment.