mirror of
https://github.com/suitenumerique/meet.git
synced 2026-09-23 03:14:01 +00:00
🐛(helm) render periodSeconds and failureThreshold on probes
The `meet.probes.abstract` helper was missing `periodSeconds` block which means Kubernetes fell back to its 10s default instead of the chart value. It's now possible to configure the `failureThreshold` and `successThreshold`.
This commit is contained in:
@@ -27,6 +27,7 @@ and this project adheres to
|
||||
|
||||
### Fixed
|
||||
|
||||
- 🐛(helm) render periodSeconds and failureThreshold on probes
|
||||
- 🐛(backend) report the app release to Sentry instead of "NA"
|
||||
- 🐛(frontend) play the waiting room notification sound on every arrival
|
||||
- 🐛(backend) acknowledge unknown LiveKit webhook events instead of 422
|
||||
|
||||
@@ -128,6 +128,9 @@ httpGet:
|
||||
{{- end }}
|
||||
initialDelaySeconds: {{ .initialDelaySeconds | eq nil | ternary 0 .initialDelaySeconds }}
|
||||
timeoutSeconds: {{ .timeoutSeconds | eq nil | ternary 1 .timeoutSeconds }}
|
||||
periodSeconds: {{ .periodSeconds | eq nil | ternary 10 .periodSeconds }}
|
||||
failureThreshold: {{ .failureThreshold | eq nil | ternary 3 .failureThreshold }}
|
||||
successThreshold: {{ .successThreshold | eq nil | ternary 1 .successThreshold }}
|
||||
{{- end }}
|
||||
|
||||
{{/*
|
||||
|
||||
Reference in New Issue
Block a user