From 9f9d7f9de74338e5809c6814fd034675bbe430f6 Mon Sep 17 00:00:00 2001 From: Matt Reeves Date: Sun, 7 Jul 2024 18:19:31 -0400 Subject: [PATCH] updating --- .../authentik/authentik/helmrelease.yaml | 19 --------------- .../authentik/authentik/kustomization.yaml | 3 ++- .../staging/authentik/authentik/values.yaml | 23 +++++++++++++++++++ 3 files changed, 25 insertions(+), 20 deletions(-) create mode 100644 cluster/apps/staging/authentik/authentik/values.yaml diff --git a/cluster/apps/staging/authentik/authentik/helmrelease.yaml b/cluster/apps/staging/authentik/authentik/helmrelease.yaml index 11d978c..09215b8 100644 --- a/cluster/apps/staging/authentik/authentik/helmrelease.yaml +++ b/cluster/apps/staging/authentik/authentik/helmrelease.yaml @@ -15,25 +15,6 @@ spec: name: authentik-chart namespace: flux-system interval: 15m - values: - authentik: - secret_key: "xLfHF7V+Hdzqt8Cy2LWNx8oSgGvWrVMG0gwTpB0IC+d2Iduk6qZo//raYbLm+l0CEn8N3d9r/ng0WWuW" - error_reporting: - enabled: false - postgresql: - password: "pm7N6zuDGJhWyR" - postgresql: - enabled: true - auth: - password: "pm7N6zuDGJhWyR" - redis: - enabled: true - server: - ingress: - ingressClassName: traefik - enabled: true - hosts: - - auth.${PUBLIC_DOMAIN} persistence: enabled: true storageClass: longhorn diff --git a/cluster/apps/staging/authentik/authentik/kustomization.yaml b/cluster/apps/staging/authentik/authentik/kustomization.yaml index ca92507..1cc34e2 100644 --- a/cluster/apps/staging/authentik/authentik/kustomization.yaml +++ b/cluster/apps/staging/authentik/authentik/kustomization.yaml @@ -2,4 +2,5 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: - - helmrelease.yaml \ No newline at end of file + - helmrelease.yaml + - values.yaml \ No newline at end of file diff --git a/cluster/apps/staging/authentik/authentik/values.yaml b/cluster/apps/staging/authentik/authentik/values.yaml new file mode 100644 index 0000000..f4965ec --- /dev/null +++ b/cluster/apps/staging/authentik/authentik/values.yaml @@ -0,0 +1,23 @@ +authentik: + secret_key: "xLfHF7V+Hdzqt8Cy2LWNx8oSgGvWrVMG0gwTpB0IC+d2Iduk6qZo//raYbLm+l0CEn8N3d9r/ng0WWuW" + # This sends anonymous usage-data, stack traces on errors and + # performance data to sentry.io, and is fully opt-in + error_reporting: + enabled: false + postgresql: + password: "pm7N6zuDGJhWyR" + +server: + ingress: + # Specify kubernetes ingress controller class name + ingressClassName: traefik + enabled: true + hosts: + - auth.mafyuh.com + +postgresql: + enabled: true + auth: + password: "pm7N6zuDGJhWyR" +redis: + enabled: true \ No newline at end of file