argo/apps/authelia/base/daemonset.patch.yaml
2024-10-09 16:24:45 -04:00

39 lines
1.2 KiB
YAML

apiVersion: apps/v1
kind: DaemonSet
metadata:
name: authelia
spec:
revisionHistoryLimit: 3
template:
spec:
containers:
- name: authelia
env:
# prevents 431 request header too large
# https://www.authelia.com/reference/guides/log-messages/#request-header-too-large
- name: AUTHELIA_SERVER_BUFFERS_READ
value: "16384"
- name: AUTHELIA_SERVER_BUFFERS_WRITE
value: "16384"
- name: AUTHELIA_STORAGE_POSTGRES_HOST
valueFrom:
secretKeyRef:
name: pg-authelia-app
key: host
- name: AUTHELIA_STORAGE_POSTGRES_DATABASE
valueFrom:
secretKeyRef:
name: pg-authelia-app
key: dbname
- name: AUTHELIA_STORAGE_POSTGRES_USERNAME
valueFrom:
secretKeyRef:
name: pg-authelia-app
key: username
- name: AUTHELIA_STORAGE_POSTGRES_PASSWORD
valueFrom:
secretKeyRef:
name: pg-authelia-app
key: password
# - name: TZ
# value: ...