From 0ac5112480c35720114df7440885db0336691364 Mon Sep 17 00:00:00 2001 From: Andreas Geissler Date: Thu, 15 Jun 2023 09:09:16 +0200 Subject: [PATCH] [SO] Increase SO-Admin-Cockpit timeouts To fix startup problems in "small" flavor setups the liveness and readiness probe timeouts needed to be extended. Issue-ID: OOM-3187 Signed-off-by: Andreas Geissler Change-Id: Iec44699b815051598d1ebabfe16cbd661a394d16 --- kubernetes/so/components/so-admin-cockpit/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kubernetes/so/components/so-admin-cockpit/values.yaml b/kubernetes/so/components/so-admin-cockpit/values.yaml index de6f031435..8186d436b6 100644 --- a/kubernetes/so/components/so-admin-cockpit/values.yaml +++ b/kubernetes/so/components/so-admin-cockpit/values.yaml @@ -125,12 +125,12 @@ resources: unlimited: {} readinessProbe: port: 9091 - initialDelaySeconds: 20 + initialDelaySeconds: 40 periodSeconds: 10 timeoutSeconds: 10 livenessProbe: port: 9091 - initialDelaySeconds: 40 + initialDelaySeconds: 80 periodSeconds: 10 timeoutSeconds: 10 successThreshold: 1 -- 2.16.6