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 <zhenyus@mathmast.com>
This commit is contained in:
zhenyus 2025-06-26 23:08:03 +08:00
parent 9c07783780
commit f684047dbb

View File

@ -32,21 +32,21 @@ freeleaps:
config: config:
path: /api/_/readyz path: /api/_/readyz
port: 8001 port: 8001
initialDelaySeconds: 5 initialDelaySeconds: 30
periodSeconds: 30 periodSeconds: 30
timeoutSeconds: 60 timeoutSeconds: 120
successThreshold: 1 successThreshold: 1
failureThreshold: 3 failureThreshold: 15
liveness: liveness:
type: httpGet type: httpGet
config: config:
path: /api/_/livez path: /api/_/livez
port: 8001 port: 8001
initialDelaySeconds: 5 initialDelaySeconds: 30
periodSeconds: 15 periodSeconds: 30
timeoutSeconds: 60 timeoutSeconds: 120
successThreshold: 1 successThreshold: 1
failureThreshold: 3 failureThreshold: 15
terminationGracePeriodSeconds: 30 terminationGracePeriodSeconds: 30
services: services:
- name: freeleaps-service - name: freeleaps-service