-
Notifications
You must be signed in to change notification settings - Fork 40k
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
Re-add support for the deprecated ESIPP beta annotations for v1.8 #64124
Comments
One thing to note, we used to have validation logic to disallow mixing the usage of beta annotation and api field. But to workaround the 1.8 master with 1.6 nodes case, users have to specify both beta annotation and api field (for ESIPP) on service. Directly reverting #50224 might break them again. And rewriting those logic could be risky (unexpected side effect). |
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
Stale issues rot after 30d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
Rotten issues close after 30d of inactivity. Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
@fejta-bot: Closing this issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Is this a BUG REPORT or FEATURE REQUEST?:
/kind bug
/sig network
What happened:
In #50224, we removed the support for ESIPP beta annotations in k8s v1.8:
service.beta.kubernetes.io/external-traffic
service.beta.kubernetes.io/healthcheck-nodeport
But turned out that is problematic, because the GA API field was only available since k8s v1.7 (added by #41162). With a combination of master on 1.8 and nodes on 1.6, neither the API fields nor the beta annotations is usable. The worse thing is, setting only the beta annotation to
OnlyLocal
with such combination might cause partial of the LB traffic get blackholed, because the master will configure LB to send traffic to all nodes, while the nodes that don't have backends on it will drop the packet.We should re-add support for these annotation for 1.8.
How to reproduce it (as minimally and precisely as possible):
Create a cluster with master on 1.8 and nodes on a lower version and observer ESIPP beta annotations not working.
Anything else we need to know?:
cc @bowei
/assign
The text was updated successfully, but these errors were encountered: