From cf089164487bed6430e8e7dcbefd8f86fe7dcb8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Huss?= Date: Sat, 12 Aug 2023 12:19:29 +0200 Subject: [PATCH] fix --- share/authentik/index.yaml | 110 +++++++++++++++++----------------- share/authentik/postgresql.tf | 3 + 2 files changed, 58 insertions(+), 55 deletions(-) diff --git a/share/authentik/index.yaml b/share/authentik/index.yaml index 856e451..d3c5083 100644 --- a/share/authentik/index.yaml +++ b/share/authentik/index.yaml @@ -60,16 +60,6 @@ options: default: backup-settings type: string type: object - domain: - default: your-company - examples: - - your-company - type: string - issuer: - default: letsencrypt-prod - examples: - - letsencrypt-prod - type: string email: default: port: 587 @@ -95,6 +85,31 @@ options: default: false type: boolean type: object + error_reporting: + default: + enabled: false + environment: k8s + send_pii: false + examples: + - enabled: false + environment: k8s + send_pii: false + properties: + enabled: + default: false + type: boolean + environment: + default: k8s + type: string + send_pii: + default: false + type: boolean + type: object + sub-domain: + default: auth + examples: + - auth + type: string domain-name: default: your_company.com examples: @@ -153,11 +168,41 @@ options: default: 8Gi type: string type: object + ingress-class: + default: traefik + examples: + - traefik + type: string geoip: default: /geoip/GeoLite2-City.mmdb examples: - /geoip/GeoLite2-City.mmdb type: string + loglevel: + default: info + examples: + - info + type: string + issuer: + default: letsencrypt-prod + examples: + - letsencrypt-prod + type: string + domain: + default: your-company + examples: + - your-company + type: string + admin: + default: + email: auth-admin + examples: + - email: auth-admin + properties: + email: + default: auth-admin + type: string + type: object image: default: project: goauthentik @@ -188,51 +233,6 @@ options: default: 2023.5.4 type: string type: object - sub-domain: - default: auth - examples: - - auth - type: string - loglevel: - default: info - examples: - - info - type: string - ingress-class: - default: traefik - examples: - - traefik - type: string - admin: - default: - email: auth-admin - examples: - - email: auth-admin - properties: - email: - default: auth-admin - type: string - type: object - error_reporting: - default: - enabled: false - environment: k8s - send_pii: false - examples: - - enabled: false - environment: k8s - send_pii: false - properties: - enabled: - default: false - type: boolean - environment: - default: k8s - type: string - send_pii: - default: false - type: boolean - type: object dependencies: - dist: null category: core diff --git a/share/authentik/postgresql.tf b/share/authentik/postgresql.tf index 25deb4a..3b00fd3 100644 --- a/share/authentik/postgresql.tf +++ b/share/authentik/postgresql.tf @@ -2,6 +2,9 @@ locals { pg-labels = merge(local.common-labels, { "app.kubernetes.io/component" = "pg" }) + pool-labels = merge(local.common-labels, { + "app.kubernetes.io/component" = "pg-pool" + }) } resource "kubectl_manifest" "prj_pg" {