Skip to content

Commit

Permalink
[JBEAP-28619] Fix startup probe
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
jmesnil committed Dec 4, 2024
1 parent 641da34 commit 965b3cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions charts/eap81/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ deploy:
httpGet:
path: /health/live
port: admin
initialDelaySeconds: 60
readinessProbe:
httpGet:
path: /health/ready
port: admin
initialDelaySeconds: 10
startupProbe:
httpGet:
path: /health/live
path: /health/started
port: admin
initialDelaySeconds: 60
initialDelaySeconds: 10
failureThreshold: 11

0 comments on commit 965b3cf

Please sign in to comment.