Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions changelog.d/3-bug-fixes/coturn-liveness
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Coturn helm chart: Increase the default timeout of liveness/readiness probe and make it configurable
4 changes: 4 additions & 0 deletions charts/coturn/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,15 @@ spec:
protocol: TCP

livenessProbe:
timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }}
failureThreshold: {{ .Values.livenessProbe.failureThreshold }}
httpGet:
path: /
port: status-http

readinessProbe:
timeoutSeconds: {{ .Values.readinessProbe.timeoutSeconds }}
failureThreshold: {{ .Values.readinessProbe.failureThreshold }}
httpGet:
path: /
port: status-http
Expand Down
8 changes: 8 additions & 0 deletions charts/coturn/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,11 @@ coturnGracefulTermination: false
# terminated. This setting is only effective when coturnGracefulTermination is
# set to true.
coturnGracePeriodSeconds: 86400 # one day

livenessProbe:
timeoutSeconds: 5
failureThreshold: 5

readinessProbe:
timeoutSeconds: 5
failureThreshold: 5