fix(authelia): enable filesystem notifier

This commit is contained in:
David Landry 2024-10-09 16:42:26 -04:00
parent 6db291e66c
commit 7b8d7b3565
2 changed files with 6 additions and 4 deletions

View file

@ -145,7 +145,9 @@ data:
ban_time: '5 minutes'
storage:
notifier:
disable_startup_check: true
disable_startup_check: false
filesystem:
filename: '/config/notification.txt'
access_control:
default_policy: 'two_factor'
...
@ -222,7 +224,7 @@ spec:
app.kubernetes.io/managed-by: Helm
helm.sh/chart: authelia-0.9.9
annotations:
authelia.com/checksum-config: 006bc5d2a8e6cd74f00c0997a5f019130c7fcf03d794081d7dab493cba204888
authelia.com/checksum-config: 7bc79c85b810fad05b2739aa5f71d36618db4372c45faf691c5baf04ad6a490e
spec:
hostNetwork: false

View file

@ -1059,7 +1059,7 @@ configMap:
## The available providers are: filesystem, smtp. You must use one and only one of these providers.
notifier:
## You can disable the notifier startup check by setting this to true.
disable_startup_check: true
disable_startup_check: false
##
## File System (Notification Provider)
@ -1067,7 +1067,7 @@ configMap:
## Important: Kubernetes (or HA) users must read https://www.authelia.com/overview/authorization/statelessness/
##
filesystem:
enabled: false
enabled: true
filename: "/config/notification.txt"
##