From 106cd32d948d3f44d043f630fd2dbd99091e09a2 Mon Sep 17 00:00:00 2001 From: xinyu Date: Fri, 20 Feb 2026 13:01:59 +0800 Subject: [PATCH] added more generous health check --- deploy/helm/values.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deploy/helm/values.yaml b/deploy/helm/values.yaml index 1631cf1..7f13693 100644 --- a/deploy/helm/values.yaml +++ b/deploy/helm/values.yaml @@ -95,17 +95,17 @@ probes: path: /health initialDelaySeconds: 10 periodSeconds: 70 - timeoutSeconds: 5 + timeoutSeconds: 30 successThreshold: 1 - failureThreshold: 3 + failureThreshold: 5 liveness: enabled: true path: /health initialDelaySeconds: 30 periodSeconds: 70 - timeoutSeconds: 5 + timeoutSeconds: 30 successThreshold: 1 - failureThreshold: 3 + failureThreshold: 5 strategy: type: Recreate