Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions charts/synapse/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down