From 7ad93f88a3dc500a8833a421cefc273c9e835f12 Mon Sep 17 00:00:00 2001 From: Jeff Mesnil Date: Thu, 28 Nov 2024 14:38:58 +0100 Subject: [PATCH] [JBEAP-28618] 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-28618 Signed-off-by: Jeff Mesnil --- charts/eap-xp6/values.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/eap-xp6/values.yaml b/charts/eap-xp6/values.yaml index 766ff79..ca2044b 100644 --- a/charts/eap-xp6/values.yaml +++ b/charts/eap-xp6/values.yaml @@ -33,7 +33,6 @@ deploy: httpGet: path: /health/live port: admin - initialDelaySeconds: 60 readinessProbe: httpGet: path: /health/ready @@ -41,6 +40,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