mirror of
https://github.com/vcscsvcscs/GenerationsHeritage.git
synced 2025-08-13 22:39:06 +02:00
61 lines
1.4 KiB
YAML
61 lines
1.4 KiB
YAML
zitadel:
|
|
masterkeySecretName: zitadel-masterkey
|
|
configmapConfig:
|
|
ExternalSecure: true
|
|
ExternalDomain: zitadel.varghacsongor.hu
|
|
ExternalPort: 443
|
|
TLS:
|
|
Enabled: false
|
|
Database:
|
|
Postgres:
|
|
Host: db-postgresql
|
|
Port: 5432
|
|
Database: zitadel
|
|
MaxOpenConns: 20
|
|
MaxIdleConns: 10
|
|
MaxConnLifetime: 30m
|
|
MaxConnIdleTime: 5m
|
|
User:
|
|
Username: zitadel
|
|
SSL:
|
|
Mode: verify-full
|
|
Admin:
|
|
Username: postgres
|
|
SSL:
|
|
Mode: verify-full
|
|
|
|
dbSslCaCrtSecret: postgres-cert
|
|
dbSslAdminCrtSecret: postgres-cert
|
|
dbSslUserCrtSecret: zitadel-cert
|
|
|
|
image:
|
|
repository: ghcr.io/zitadel/zitadel
|
|
pullPolicy: IfNotPresent
|
|
# Overrides the image tag whose default is the chart appVersion.
|
|
tag: "v2.51.0"
|
|
|
|
annotations:
|
|
argocd.argoproj.io/sync-wave: "5"
|
|
argocd.argoproj.io/hook: Sync
|
|
|
|
env:
|
|
- name: ZITADEL_FIRSTINSTANCE_ORG_HUMAN_USERNAME
|
|
value: "admin"
|
|
|
|
- name: ZITADEL_FIRSTINSTANCE_ORG_HUMAN_PASSWORD
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: zitadel-masterkey
|
|
key: admin-password
|
|
|
|
- name: ZITADEL_DATABASE_POSTGRES_USER_PASSWORD
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: postgres-auth
|
|
key: user-password
|
|
|
|
- name: ZITADEL_DATABASE_POSTGRES_ADMIN_PASSWORD
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: postgres-auth
|
|
key: admin-password |