From c31a375fd2aef6f62a23e018b44ebf0798529a0b Mon Sep 17 00:00:00 2001 From: Fiete Ostkamp Date: Sun, 2 Mar 2025 15:08:58 +0100 Subject: [SO] Revert decreasing the liveness probe intervals - SO was not running stable with liveness probe intervals of 20 seconds Issue-ID: SO-4147 Change-Id: I574165c0c583e4cc2a518ff4f79d5d6e4ff2fce4 Signed-off-by: Fiete Ostkamp --- kubernetes/so/components/soHelpers/values.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kubernetes/so') diff --git a/kubernetes/so/components/soHelpers/values.yaml b/kubernetes/so/components/soHelpers/values.yaml index 0da387faaa..60a71f4de0 100755 --- a/kubernetes/so/components/soHelpers/values.yaml +++ b/kubernetes/so/components/soHelpers/values.yaml @@ -27,14 +27,14 @@ global: startupProbe: path: /manage/health scheme: HTTP - periodSeconds: 3 - timeoutSeconds: 3 + periodSeconds: 5 + timeoutSeconds: 5 successThreshold: 1 - failureThreshold: 200 + failureThreshold: 120 livenessProbe: path: /manage/health scheme: HTTP - periodSeconds: 20 + periodSeconds: 60 timeoutSeconds: 10 successThreshold: 1 failureThreshold: 3 -- cgit