This commit is contained in:
2023-08-12 12:19:29 +02:00
parent 6598fa478d
commit cf08916448
2 changed files with 58 additions and 55 deletions

View File

@@ -60,16 +60,6 @@ options:
default: backup-settings default: backup-settings
type: string type: string
type: object type: object
domain:
default: your-company
examples:
- your-company
type: string
issuer:
default: letsencrypt-prod
examples:
- letsencrypt-prod
type: string
email: email:
default: default:
port: 587 port: 587
@@ -95,6 +85,31 @@ options:
default: false default: false
type: boolean type: boolean
type: object 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: domain-name:
default: your_company.com default: your_company.com
examples: examples:
@@ -153,11 +168,41 @@ options:
default: 8Gi default: 8Gi
type: string type: string
type: object type: object
ingress-class:
default: traefik
examples:
- traefik
type: string
geoip: geoip:
default: /geoip/GeoLite2-City.mmdb default: /geoip/GeoLite2-City.mmdb
examples: examples:
- /geoip/GeoLite2-City.mmdb - /geoip/GeoLite2-City.mmdb
type: string 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: image:
default: default:
project: goauthentik project: goauthentik
@@ -188,51 +233,6 @@ options:
default: 2023.5.4 default: 2023.5.4
type: string type: string
type: object 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: dependencies:
- dist: null - dist: null
category: core category: core

View File

@@ -2,6 +2,9 @@ locals {
pg-labels = merge(local.common-labels, { pg-labels = merge(local.common-labels, {
"app.kubernetes.io/component" = "pg" "app.kubernetes.io/component" = "pg"
}) })
pool-labels = merge(local.common-labels, {
"app.kubernetes.io/component" = "pg-pool"
})
} }
resource "kubectl_manifest" "prj_pg" { resource "kubectl_manifest" "prj_pg" {