From a88c9ff2effc33ba779d8cbaeb6f2337b4b23692 Mon Sep 17 00:00:00 2001 From: Fabio Burzigotti Date: Tue, 11 Jun 2024 12:11:18 +0200 Subject: [PATCH 1/2] [JBEAP-27281] - Setting deploy.(liveness|startup)Probe.initialDelaySeconds to 10 Signed-off-by: Fabio Burzigotti --- charts/eap-xp5/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/eap-xp5/values.yaml b/charts/eap-xp5/values.yaml index 3d2c1eb..7bdcb3f 100644 --- a/charts/eap-xp5/values.yaml +++ b/charts/eap-xp5/values.yaml @@ -32,7 +32,7 @@ deploy: httpGet: path: /health/live port: admin - initialDelaySeconds: 60 + initialDelaySeconds: 10 readinessProbe: httpGet: path: /health/ready @@ -42,4 +42,4 @@ deploy: httpGet: path: /health/live port: admin - initialDelaySeconds: 60 \ No newline at end of file + initialDelaySeconds: 10 \ No newline at end of file From 62882d4c5a68be59ba75e04b33b92dc44051b070 Mon Sep 17 00:00:00 2001 From: Fabio Burzigotti Date: Tue, 11 Jun 2024 12:12:27 +0200 Subject: [PATCH 2/2] [JBEAP-27281] - Fix, pointing deploy.startupProbe.path to health/started Signed-off-by: Fabio Burzigotti --- charts/eap-xp5/values.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/eap-xp5/values.yaml b/charts/eap-xp5/values.yaml index 7bdcb3f..3cfb593 100644 --- a/charts/eap-xp5/values.yaml +++ b/charts/eap-xp5/values.yaml @@ -32,7 +32,6 @@ deploy: httpGet: path: /health/live port: admin - initialDelaySeconds: 10 readinessProbe: httpGet: path: /health/ready @@ -40,6 +39,7 @@ deploy: initialDelaySeconds: 10 startupProbe: httpGet: - path: /health/live + path: /health/started port: admin - initialDelaySeconds: 10 \ No newline at end of file + initialDelaySeconds: 10 + failureThreshold: 5 \ No newline at end of file