feat(authelia): add app for evaluation
This commit is contained in:
parent
cd6524ee7f
commit
3a20805e29
14 changed files with 2089 additions and 1 deletions
38
apps/authelia/base/daemonset.patch.yaml
Normal file
38
apps/authelia/base/daemonset.patch.yaml
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
apiVersion: apps/v1
|
||||
kind: DaemonSet
|
||||
metadata:
|
||||
name: authelia
|
||||
spec:
|
||||
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: ...
|
||||
Loading…
Add table
Add a link
Reference in a new issue