-
Notifications
You must be signed in to change notification settings - Fork 3.4k
ingress: Support headless service #32644
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/ci-ingress |
751f62c
to
6b9ae28
Compare
/ci-ingress |
6b9ae28
to
8cb5b3e
Compare
/ci-ingress |
8cb5b3e
to
0cc9459
Compare
/ci-ingress |
0cc9459
to
c0c1ff4
Compare
/ci-ingress |
c0c1ff4
to
90e8b23
Compare
/ci-ingress |
90e8b23
to
c744f40
Compare
/ci-ingress |
c744f40
to
4940473
Compare
/test |
4940473
to
a16a273
Compare
/ci-ingress |
a16a273
to
a83a327
Compare
/test |
2 tasks
a83a327
to
1487da3
Compare
viktor-kurchenko
approved these changes
May 27, 2024
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
/test |
jrajahalme
approved these changes
May 31, 2024
Currently, we don't inject headless endpoints into envoy XDS, hence the response is coming with error `no healthy upstream`. This commit is to explicitly handle headless service in CEC controller. One point worth noting is that k8s.Endpoint watcher is used as it's a wrapper for both k8s Endpoint and EndpointSlice. Signed-off-by: Tam Mach <tam.mach@cilium.io>
1487da3
to
31053ee
Compare
/test |
aanm
approved these changes
Jun 4, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
release-blocker/1.16
This issue will prevent the release of the next version of Cilium.
release-note/minor
This PR changes functionality that users may find relevant to operating Cilium.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Currently, we don't inject headless endpoints into envoy XDS, hence the response is coming with error
no healthy upstream
. This commit is to explicitly handle headless service in CEC controller.Fixes: #23182