[SO] Revert decreasing the liveness probe intervals 29/140329/1
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Sun, 2 Mar 2025 14:08:58 +0000 (15:08 +0100)
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Sun, 2 Mar 2025 14:08:58 +0000 (15:08 +0100)
- SO was not running stable with liveness probe intervals
  of 20 seconds

Issue-ID: SO-4147
Change-Id: I574165c0c583e4cc2a518ff4f79d5d6e4ff2fce4
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
kubernetes/so/components/soHelpers/values.yaml

index 0da387f..60a71f4 100755 (executable)
@@ -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