-
Notifications
You must be signed in to change notification settings - Fork 484
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
fix(probes) allows overriding the default liveness/readiness probe with custom commands #1070
base: main
Are you sure you want to change the base?
Changes from all commits
cadee10
3695ea4
0193117
4522b7a
a57717b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# CI test for testing the probe with an exec command instead of the default httpGet | ||
# - enable the probes with execGet | ||
|
||
livenessProbe: | ||
exec: | ||
command: | ||
- python3.10 | ||
- /home/kong/scripts/liveness_probe.py | ||
initialDelaySeconds: 10 | ||
periodSeconds: 10 | ||
timeoutSeconds: 5 | ||
successThreshold: 1 | ||
failureThreshold: 3 | ||
|
||
readinessProbe: | ||
exec: | ||
command: | ||
- python3.10 | ||
- /home/kong/scripts/readiness_probe.py | ||
initialDelaySeconds: 10 | ||
periodSeconds: 10 | ||
timeoutSeconds: 5 | ||
successThreshold: 1 | ||
failureThreshold: 3 | ||
Check failure on line 24 in charts/kong/ci/probe-test-values.yaml GitHub Actions / lint-test (ingress)
Check failure on line 24 in charts/kong/ci/probe-test-values.yaml GitHub Actions / lint-test (kong)
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -823,6 +823,7 @@ resources: {} | |
# memory: 2G | ||
|
||
# readinessProbe for Kong pods | ||
# replace httpGet with exec if you want to use a custom command | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you please specify in the comments here an exemplary use case for exec? So that potential users know how exactly this can be used? I'm thinking something that could simply be uncommented to work ( assuming that |
||
readinessProbe: | ||
httpGet: | ||
path: "/status/ready" | ||
|
@@ -835,6 +836,7 @@ readinessProbe: | |
failureThreshold: 3 | ||
|
||
# livenessProbe for Kong pods | ||
# replace httpGet with exec if you want to use a custom command | ||
livenessProbe: | ||
httpGet: | ||
path: "/status" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about making this into a small helm template which could be reused for both
liveness
andreadiness
probe?