Test zitadel
This commit is contained in:
parent
fa3cd364be
commit
518340aba8
3 changed files with 76 additions and 0 deletions
|
@ -60,3 +60,13 @@ helmApps:
|
||||||
repoURL: https://immich-app.github.io/immich-charts
|
repoURL: https://immich-app.github.io/immich-charts
|
||||||
chart: immich
|
chart: immich
|
||||||
revision: 0.1.2
|
revision: 0.1.2
|
||||||
|
- app: zitadel
|
||||||
|
namespace: zitadel
|
||||||
|
repoURL: https://charts.zitadel.com
|
||||||
|
chart: zitadel
|
||||||
|
revision: 5.0.0
|
||||||
|
- app: cockroachdb
|
||||||
|
namespace: crdb
|
||||||
|
repoURL: https://charts.cockroachdb.com/
|
||||||
|
chart: cockroachdb
|
||||||
|
revision: 11.1.0
|
||||||
|
|
8
argo/cockroachdb/values.yaml
Normal file
8
argo/cockroachdb/values.yaml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
name: crdb
|
||||||
|
namespace: crdb
|
||||||
|
serviceAccountName: crdb
|
||||||
|
fullnameOverride: crdb
|
||||||
|
single-node: true
|
||||||
|
statefulset:
|
||||||
|
replicas: 1
|
58
argo/zitadel/values.yaml
Normal file
58
argo/zitadel/values.yaml
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
---
|
||||||
|
name: zitadel
|
||||||
|
namespace: zitadel
|
||||||
|
serviceAccountName: crdb
|
||||||
|
externalSecrets:
|
||||||
|
secretStoreName: zitadel
|
||||||
|
vaultRole: zitadel
|
||||||
|
secretPaths:
|
||||||
|
- name: zitadel
|
||||||
|
secrets:
|
||||||
|
- secretKey: masterkey
|
||||||
|
key: zitadel
|
||||||
|
property: masterkey
|
||||||
|
- secretKey: config-yaml
|
||||||
|
key: zitadel
|
||||||
|
property: config-yaml
|
||||||
|
|
||||||
|
zitadel:
|
||||||
|
# https://github.com/zitadel/zitadel/blob/main/cmd/defaults.yaml
|
||||||
|
configmapConfig:
|
||||||
|
ExternalSecure: false
|
||||||
|
TLS:
|
||||||
|
Enabled: false
|
||||||
|
Database:
|
||||||
|
cockroach:
|
||||||
|
Host: "crdb-public"
|
||||||
|
User:
|
||||||
|
SSL:
|
||||||
|
Mode: "verify-full"
|
||||||
|
Admin:
|
||||||
|
SSL:
|
||||||
|
Mode: "verify-full"
|
||||||
|
|
||||||
|
Machine:
|
||||||
|
Identification:
|
||||||
|
Hostname:
|
||||||
|
Enabled: true
|
||||||
|
Webhook:
|
||||||
|
Enabled: false
|
||||||
|
|
||||||
|
masterkeySecretName: "zitadel"
|
||||||
|
|
||||||
|
serviceAccount:
|
||||||
|
create: false
|
||||||
|
annotations: {}
|
||||||
|
name: "zitadel"
|
||||||
|
|
||||||
|
initJob:
|
||||||
|
# Once ZITADEL is installed, the initJob can be disabled.
|
||||||
|
enabled: true
|
||||||
|
annotations:
|
||||||
|
helm.sh/hook: pre-install,pre-upgrade
|
||||||
|
helm.sh/hook-delete-policy: before-hook-creation
|
||||||
|
helm.sh/hook-weight: "1"
|
||||||
|
resources: {}
|
||||||
|
activeDeadlineSeconds: 300
|
||||||
|
extraContainers: []
|
||||||
|
podAnnotations: {}
|
Loading…
Reference in a new issue