From cbf3fe0fd0a653e641d259189db5904f9093a266 Mon Sep 17 00:00:00 2001 From: shcherbak Date: Wed, 6 May 2026 11:25:23 +0300 Subject: [PATCH] startupProbe, livenessProbe, readinessProbe --- charts/synapse/templates/_helpers.tpl | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/charts/synapse/templates/_helpers.tpl b/charts/synapse/templates/_helpers.tpl index 8c71dcb..d1abe4d 100644 --- a/charts/synapse/templates/_helpers.tpl +++ b/charts/synapse/templates/_helpers.tpl @@ -74,6 +74,26 @@ containers: - containerPort: 9092 name: metrics protocol: TCP + - containerPort: 8080 + name: synapse-health + protocol: TCP + startupProbe: + httpGet: + path: /health + port: synapse-health + failureThreshold: 180 + periodSeconds: 10 + livenessProbe: + httpGet: + path: /health + port: synapse-health + failureThreshold: 3 + periodSeconds: 10 + readinessProbe: + httpGet: + path: /health + port: synapse-health + periodSeconds: 10 volumeMounts: - name: synapse-{{ .name }}-config mountPath: /data