From 7b6c96d8ac754740f3c27cdc51108b13dbcb33d6 Mon Sep 17 00:00:00 2001 From: vitor-aignosi Date: Tue, 13 Jan 2026 09:56:34 -0300 Subject: [PATCH] SIENTIAPDE-1478 Update liveness and readiness probe initial delays in values.yaml for improved application startup timing --- values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/values.yaml b/values.yaml index e845db5..87a56b6 100644 --- a/values.yaml +++ b/values.yaml @@ -71,7 +71,7 @@ livenessProbe: - -c - | curl -sf http://localhost:9090/metrics | grep -q '^app_up{.*} 1' - initialDelaySeconds: 30 + initialDelaySeconds: 360 periodSeconds: 15 timeoutSeconds: 5 failureThreshold: 3 @@ -83,7 +83,7 @@ readinessProbe: - -c - | curl -sf http://localhost:9090/metrics | grep -q '^app_up{.*} 1' - initialDelaySeconds: 20 + initialDelaySeconds: 300 periodSeconds: 10 timeoutSeconds: 3 failureThreshold: 2