-
Notifications
You must be signed in to change notification settings - Fork 681
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
Use Envoy's /ready endpoint for readiness probes #1433
Use Envoy's /ready endpoint for readiness probes #1433
Conversation
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.
Hey thanks for working on this @rochacon! We can also remove the health filter here: https://github.com/heptio/contour/blob/1aaf973e922e1449d107e8e787b04b54058e660f/internal/envoy/stats.go#L76-L88
we use the envoy.health_check filter today to achieve graceful connection draining during envoy shutdown/rolling deploys, i.e. issue an /healthcheck/fail and then wait for connections to drain. |
@stevesloka I've left the filter on purpose, in the intent to use the @ravilr yes, both the health check filter and |
Thanks @rochacon, I think if we switch to |
e7b2270
to
e087294
Compare
Signed-off-by: Rodrigo Chacon <[email protected]>
Signed-off-by: Rodrigo Chacon <[email protected]>
Signed-off-by: Rodrigo Chacon <[email protected]>
e087294
to
23e8d26
Compare
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.
LGTM, with the caveat that this will need a section in the upgrade guide for 1.0-beta1 plus all 1.0 releases. I've added a note to #1476
Nick, would you please merge this for the OP
… On 10 Sep 2019, at 10:02, Nick Young ***@***.***> wrote:
@youngnick approved this pull request.
LGTM, with the caveat that this will need a section in the upgrade guide for 1.0-beta1 plus all 1.0 releases. I've added a note to #1476
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
This PR enables Envoy's 1.11+
/ready
endpoint for readiness probes.Closes #1277