mirror of
https://github.com/nold360/hive-apps
synced 2025-01-24 07:56:14 +00:00
fix(authentik): redis
This commit is contained in:
parent
2b8759a499
commit
10e88d005a
1 changed files with 6 additions and 6 deletions
|
@ -10,8 +10,6 @@ securityContext:
|
||||||
worker:
|
worker:
|
||||||
# -- worker replicas
|
# -- worker replicas
|
||||||
replicas: 1
|
replicas: 1
|
||||||
# -- Custom priority class for different treatment by the scheduler
|
|
||||||
priorityClassName:
|
|
||||||
# -- worker securityContext
|
# -- worker securityContext
|
||||||
securityContext:
|
securityContext:
|
||||||
runAsUser: 1000
|
runAsUser: 1000
|
||||||
|
@ -91,11 +89,9 @@ authentik:
|
||||||
user: "app"
|
user: "app"
|
||||||
#password: ""
|
#password: ""
|
||||||
port: 5432
|
port: 5432
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
# -- set the redis hostname to talk to
|
host: 'rfs-authentik-redis.auth.svc.cluster.local'
|
||||||
# @default -- `{{ .Release.Name }}-redis-master`
|
|
||||||
host: '{{ .Release.Name }}-redis-master'
|
|
||||||
password: ""
|
|
||||||
|
|
||||||
# -- List of config maps to mount blueprints from. Only keys in the
|
# -- List of config maps to mount blueprints from. Only keys in the
|
||||||
# configmap ending with ".yaml" wil be discovered and applied
|
# configmap ending with ".yaml" wil be discovered and applied
|
||||||
|
@ -118,6 +114,10 @@ envValueFrom:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
key: secret_key
|
key: secret_key
|
||||||
name: authentik
|
name: authentik
|
||||||
|
AUTHENTIK_REDIS__PASSWORD:
|
||||||
|
secretKeyRef:
|
||||||
|
key: password
|
||||||
|
name: redis
|
||||||
|
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
|
|
Loading…
Reference in a new issue