From 965b3cf373f7303b15722a5e5138befdd0e6d08c Mon Sep 17 00:00:00 2001 From: Jeff Mesnil Date: Thu, 28 Nov 2024 14:46:21 +0100 Subject: [PATCH] [JBEAP-28619] Fix startup probe to point to /health/started Set `initialDelaySeconds` to 10 and failureThreshold to `11`. At most, the pod will wait 2 minutes (10 + 11 * 10 seconds) to be started. this fixes https://issues.redhat.com/browse/JBEAP-28619 Signed-off-by: Jeff Mesnil --- charts/eap81/values.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/eap81/values.yaml b/charts/eap81/values.yaml index 361b7b5..7c8f1b2 100644 --- a/charts/eap81/values.yaml +++ b/charts/eap81/values.yaml @@ -32,7 +32,6 @@ deploy: httpGet: path: /health/live port: admin - initialDelaySeconds: 60 readinessProbe: httpGet: path: /health/ready @@ -40,6 +39,7 @@ deploy: initialDelaySeconds: 10 startupProbe: httpGet: - path: /health/live + path: /health/started port: admin - initialDelaySeconds: 60 \ No newline at end of file + initialDelaySeconds: 10 + failureThreshold: 11 \ No newline at end of file