From f684047dbb9a87c601ccaac3877ad555c47d35f2 Mon Sep 17 00:00:00 2001 From: zhenyus Date: Thu, 26 Jun 2025 23:08:03 +0800 Subject: [PATCH] fix(freeleaps): adjust health check parameters for improved service stability - Increased initial delay, timeout, and failure threshold for readiness and liveness probes in production values.yaml to enhance resilience and reduce false negatives during startup. Signed-off-by: zhenyus --- freeleaps/helm-pkg/freeleaps/values.prod.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/freeleaps/helm-pkg/freeleaps/values.prod.yaml b/freeleaps/helm-pkg/freeleaps/values.prod.yaml index a4b9e5d4..40a11bda 100644 --- a/freeleaps/helm-pkg/freeleaps/values.prod.yaml +++ b/freeleaps/helm-pkg/freeleaps/values.prod.yaml @@ -32,21 +32,21 @@ freeleaps: config: path: /api/_/readyz port: 8001 - initialDelaySeconds: 5 + initialDelaySeconds: 30 periodSeconds: 30 - timeoutSeconds: 60 + timeoutSeconds: 120 successThreshold: 1 - failureThreshold: 3 + failureThreshold: 15 liveness: type: httpGet config: path: /api/_/livez port: 8001 - initialDelaySeconds: 5 - periodSeconds: 15 - timeoutSeconds: 60 + initialDelaySeconds: 30 + periodSeconds: 30 + timeoutSeconds: 120 successThreshold: 1 - failureThreshold: 3 + failureThreshold: 15 terminationGracePeriodSeconds: 30 services: - name: freeleaps-service