diff --git a/CHANGELOG.md b/CHANGELOG.md index 65581eac..26f394ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/helm/meet/templates/_helpers.tpl b/src/helm/meet/templates/_helpers.tpl index 695ba5f4..0f1f0203 100644 --- a/src/helm/meet/templates/_helpers.tpl +++ b/src/helm/meet/templates/_helpers.tpl @@ -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 }} {{/*