Try to get authentik working

This commit is contained in:
SeanOMik 2023-04-06 23:55:48 -04:00
parent 4ef3904182
commit 17d43fa167
Signed by: SeanOMik
GPG Key ID: 568F326C7EB33ACB
2 changed files with 7 additions and 2 deletions

View File

@ -23,11 +23,13 @@ spec:
log_level: debug log_level: debug
error_reporting: error_reporting:
enabled: true enabled: true
environment: "k3s"
postgresql: postgresql:
host: "postgresql.database" host: "postgresql.database"
name: "authentik" name: "authentik"
user: k3spostgresql user: k3spostgresql
password: "${SECRET_DATABASE_PGSQL_USER_PASS}" password: "${SECRET_DATABASE_PGSQL_USER_PASS}"
port: 5432
redis: redis:
host: "redis-master.database" host: "redis-master.database"
password: "${SECRET_DATABASE_REDIS_PASS}" password: "${SECRET_DATABASE_REDIS_PASS}"
@ -42,3 +44,6 @@ spec:
paths: paths:
- path: "/" - path: "/"
pathType: Prefix pathType: Prefix
monitoring:
enabled: false # temporarily disable monitoring

View File

@ -2,6 +2,6 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization kind: Kustomization
resources: resources:
- ./namespace.yaml - ./namespace.yaml
- ./network_policy.yaml #- ./network_policy.yaml
- ./postgresql - ./postgresql
- ./redis - ./redis