From 8f59b080880ee64ce444e51023a97971640f604b Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Mon, 5 Aug 2024 14:48:49 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=BA(helm)=20update=20liveness=20and=20?= =?UTF-8?q?readiness=20probes=20from=2010s=20to=2030s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the liveness and readiness probes interval from every 10 seconds to every 30 seconds. This change reduces the load on the server by decreasing the frequency of health checks. Given the current stability of the application, a 30-second interval is sufficient to ensure that the application remains responsive and healthy. --- src/helm/meet/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/helm/meet/values.yaml b/src/helm/meet/values.yaml index 3100c2ab..41e81e25 100644 --- a/src/helm/meet/values.yaml +++ b/src/helm/meet/values.yaml @@ -143,10 +143,10 @@ backend: probes: liveness: path: /__heartbeat__ - initialDelaySeconds: 10 + initialDelaySeconds: 30 readiness: path: /__lbheartbeat__ - initialDelaySeconds: 10 + initialDelaySeconds: 30 ## @param backend.resources Resource requirements for the backend container resources: {}