Skip to content

Commit

Permalink
feat(authelia): 4.30.2 (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-elliott authored Aug 6, 2021
1 parent a3c1b72 commit 9aab75f
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 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.2
version: 0.5.3
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.1
appVersion: 4.30.2
deprecated: false
annotations: {}
3 changes: 3 additions & 0 deletions charts/authelia/templates/configMap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ data:
ldap:
implementation: {{ default "custom" $auth.ldap.implementation }}
url: {{ $auth.ldap.url }}
timeout: {{ default "5s" $auth.ldap.timeout }}
start_tls: {{ $auth.ldap.start_tls }}
tls: {{ toYaml $auth.ldap.tls | nindent 10 }}
{{- if $auth.ldap.base_dn }}
Expand Down Expand Up @@ -133,13 +134,15 @@ data:
port: {{ default 3306 $storage.mysql.port }}
database: {{ default "authelia" $storage.mysql.database }}
username: {{ default "authelia" $storage.mysql.username }}
timeout: {{ default "5s" $storage.mysql.timeout }}
{{- end }}
{{- if $storage.postgres.enabled }}
postgres:
host: {{ $storage.postgres.host }}
port: {{ default 5432 $storage.postgres.port }}
database: {{ default "authelia" $storage.postgres.database }}
username: {{ default "authelia" $storage.postgres.username }}
timeout: {{ default "5s" $storage.postgres.timeout }}
sslmode: {{ default "disable" $storage.postgres.sslmode }}
{{- end }}
{{- end }}
Expand Down
7 changes: 6 additions & 1 deletion 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.1
tag: 4.30.2
pullPolicy: IfNotPresent
pullSecrets: []
# pullSecrets:
Expand Down Expand Up @@ -506,6 +506,9 @@ configMap:
## Scheme can be ldap or ldaps in the format (port optional).
url: ldap://openldap.default.svc.cluster.local

## Connection timeout.
timeout: 5s

## Use StartTLS with the LDAP connection.
start_tls: false

Expand Down Expand Up @@ -833,6 +836,7 @@ configMap:
port: 3306
database: authelia
username: authelia
timeout: 5s

##
## PostgreSQL (Storage Provider)
Expand All @@ -844,6 +848,7 @@ configMap:
database: authelia
username: authelia
sslmode: disable
timeout: 5s

##
## Notification Provider
Expand Down
7 changes: 6 additions & 1 deletion 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.1
tag: 4.30.2
pullPolicy: IfNotPresent
pullSecrets: []
# pullSecrets:
Expand Down Expand Up @@ -504,6 +504,9 @@ configMap:
## Scheme can be ldap or ldaps in the format (port optional).
url: ldap://openldap.default.svc.cluster.local

## Connection Timeout.
timeout: 5s

## Use StartTLS with the LDAP connection.
start_tls: false

Expand Down Expand Up @@ -831,6 +834,7 @@ configMap:
port: 3306
database: authelia
username: authelia
timeout: 5s

##
## PostgreSQL (Storage Provider)
Expand All @@ -842,6 +846,7 @@ configMap:
database: authelia
username: authelia
sslmode: disable
timeout: 5s

##
## Notification Provider
Expand Down

0 comments on commit 9aab75f

Please sign in to comment.