-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
Add support for custom healthz path in helm chart #5251
Conversation
/assign @ChiefAlexander |
c5a2bd3
to
9be154d
Compare
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: aledbf, ChiefAlexander The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@@ -212,6 +212,10 @@ controller: | |||
timeoutSeconds: 1 | |||
port: 10254 | |||
|
|||
# Path of the health check endpoint. All requests received on the port defined by | |||
# the healthz-port parameter are forwarded internally to this path. |
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.
@aledbf both controller.healthCheckPath
documentation in charts/ingress-nginx/README.md
and here reference healthz-port
parameter. I can see controller.readinessProbe.port
and controller.livenessProbe.port
, but I cannot find one named healthz-port
. Can you please clarify, is healthz-port
reference just a generic term for the other two, or is healthz-port
actual parameter somewhere?
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.
@sslavic are deployment flags https://kubernetes.github.io/ingress-nginx/user-guide/cli-arguments/
--health-check-path
--healthz-port
What this PR does / why we need it:
Types of changes
Which issue/s this PR fixes
How Has This Been Tested?
Checklist:
xref: #5161