Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[JBEAP-27281](XP 5) - Fix Liveness and Startup probes definition (initial delay and startup path) #73

Open
wants to merge 2 commits into
base: eap-xp5-dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions charts/eap-xp5/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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1 to point to this URL

path: /health/started
port: admin
initialDelaySeconds: 60
initialDelaySeconds: 10
failureThreshold: 5
Loading