From df4e577b2f1198ec8be46c4a7eee95fabc63b59c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simen=20R=C3=B8stvik?= Date: Wed, 30 Nov 2022 10:30:46 +0100 Subject: [PATCH] heh --- apps/templates/authentik.yaml | 57 +++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 apps/templates/authentik.yaml diff --git a/apps/templates/authentik.yaml b/apps/templates/authentik.yaml new file mode 100644 index 0000000..23c006f --- /dev/null +++ b/apps/templates/authentik.yaml @@ -0,0 +1,57 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: authentik + namespace: argo-cd + finalizers: + - resources-finalizer.argocd.argoproj.io +spec: + destination: + server: https://kubernetes.default.svc + namespace: authentik + project: default + source: + chart: authentik + helm: + values: | + + image: + repository: ghcr.io/goauthentik/server + tag: 2022.10.0 + + authentik: + error_reporting: + enabled: true + + envValueFrom: + AUTHENTIK_POSTGRESQL__PASSWORD: + secretKeyRef: + key: postgres-password + name: postgres-secret + + AUTHENTIK_SECRET_KEY: + secretKeyRef: + key: AUTHENTIK_SECRET_KEY + name: authentik-secret + + postgresql: + image: + registry: ghcr.io + repository: zcube/bitnami-compat/postgresql + enabled: true + auth: + existingSecret: postgres-secret + redis: + enabled: true + image: + registry: ghcr.io + repository: zcube/bitnami-compat/redis + + repoURL: https://charts.goauthentik.io + targetRevision: 2022.09.0 + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true