From 3cf7f60eaa110ffe4ef80b0cfb74c8dd72178617 Mon Sep 17 00:00:00 2001 From: briquet Date: Sat, 19 Sep 2026 12:52:05 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(helm)=20render=20periodSeconds=20a?= =?UTF-8?q?nd=20failureThreshold=20on=20probes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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`. --- CHANGELOG.md | 1 + src/helm/meet/templates/_helpers.tpl | 3 +++ 2 files changed, 4 insertions(+) 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 }} {{/*