Skip to content

Commit 965b3cf

Browse files
committed
[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 <jmesnil@redhat.com>
1 parent 641da34 commit 965b3cf

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

charts/eap81/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ deploy:
3232
httpGet:
3333
path: /health/live
3434
port: admin
35-
initialDelaySeconds: 60
3635
readinessProbe:
3736
httpGet:
3837
path: /health/ready
3938
port: admin
4039
initialDelaySeconds: 10
4140
startupProbe:
4241
httpGet:
43-
path: /health/live
42+
path: /health/started
4443
port: admin
45-
initialDelaySeconds: 60
44+
initialDelaySeconds: 10
45+
failureThreshold: 11

0 commit comments

Comments
 (0)