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:
parent
9c07783780
commit
f684047dbb
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user