diff options
author | 2025-03-02 15:08:58 +0100 | |
---|---|---|
committer | 2025-03-02 15:08:58 +0100 | |
commit | c31a375fd2aef6f62a23e018b44ebf0798529a0b (patch) | |
tree | 2a9c070ab1bb2ea039120776508a93a68a39484e /kubernetes/so | |
parent | 0060da424b15edf2d389d9898395d5e8bd19ca6a (diff) |
[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 <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'kubernetes/so')
-rwxr-xr-x | kubernetes/so/components/soHelpers/values.yaml | 8 |
1 files changed, 4 insertions, 4 deletions
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 |