mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-14 13:37:36 +00:00
fix: add arg and probes to deployment (#605)
* feat: separate setup from startup * health * move setup config * add env vars to caos_local.sh * fix domain and set devMode explicit * fix: add arg and probes to deployment * fix setup.yaml * domain validation
This commit is contained in:
@@ -20,7 +20,7 @@ spec:
|
||||
- name: zitadel
|
||||
image: docker.pkg.github.com/caos/zitadel/zitadel:latest
|
||||
imagePullPolicy: IfNotPresent
|
||||
args: []
|
||||
args: ["start"]
|
||||
ports:
|
||||
- name: grpc
|
||||
containerPort: 50001
|
||||
@@ -28,6 +28,18 @@ spec:
|
||||
containerPort: 50002
|
||||
- name: ui
|
||||
containerPort: 50003
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /ready
|
||||
port: http
|
||||
periodSeconds: 5
|
||||
failureThreshold: 2
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /healthz
|
||||
port: http
|
||||
periodSeconds: 5
|
||||
failureThreshold: 2
|
||||
env:
|
||||
- name: POD_IP
|
||||
valueFrom:
|
||||
|
Reference in New Issue
Block a user