chore: add liveness and readiness probes to Helm deployment

This commit is contained in:
Charles GTE
2026-05-17 09:37:28 +02:00
parent 8477889cea
commit 0ab94b6221
+16
View File
@@ -27,6 +27,22 @@ spec:
volumeMounts:
- name: data
mountPath: /data
livenessProbe:
httpGet:
path: /api/health
port: 80
initialDelaySeconds: 10
periodSeconds: 30
timeoutSeconds: 5
failureThreshold: 3
readinessProbe:
httpGet:
path: /api/health
port: 80
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 3
volumes:
- name: data
persistentVolumeClaim: