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