-
Notifications
You must be signed in to change notification settings - Fork 468
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
Node Annotations are Only Evaluated on Startup and not Actively Watched During Runtime #676
Comments
Closed via #677 |
Is it possible to make it automatically (without manual POD restart)? |
@ofen reopening as still below make sense to be fixed.
|
Why can't it automatically recognize the newly added node? And to propagate routing。Why have to do such a dangerous operation to kill RR? |
Do we have any choice but to kill the RR? |
@zhaixigui the new nodes are recognized, but they are assumed to be in full mesh mode, and there's no clean way to do the switch to RR mode other than restart kube-router on both RR server and client to reload the nodes' information. Killing RR servers should not bring any disruption as long as you enabled soft-restart. I've done it several times without any repercussions. |
@Feder1co5oave a bad idea? when the RR server watched a ”kube-router.io/rr.client=42“ annotation from |
soft-restart is GracefulRestart ? |
Does calico have the same problem? |
I don't know. Calico has a great reputation as network plugin and also great features. When I considered it for my clusters I found it is more complicated and has more moving parts than kube-router, so I ended up choosing the latter because of its "simplicity". |
@Feder1co5oave Feder, Is this a bad idea? is there a better idea or solution? |
@zhaixigui not at all, in fact it is exactly the solution I proposed in my first post. But I'm not a gopher and this would involve a bit of modifications to the control flow, i.e. watching nodes. I believe we'll have to wait for a volunteer to write a PR. |
I think it's as easy as doing something like this: #1723 |
On an already existing kubernetes cluster with kube-router successfully running in route reflector mode (
rr.server
annotation on 3 master nodes,rr.client
annotation on all the workers), my workflow for joining new worker nodes is like this (the cluster was created with kubeadm):for each new node:
Turns out the nodes previously joined to the cluster will receive routes for all the new nodes, but the new nodes will only receive routes for the "old" nodes. Restarting kube-router on the route reflector nodes solved this issue.
My troubleshooting suggested that whenever a new node joins, the rr server kube-router daemons will peer with that node right away, even before the
rr.client
annotation gets added to it. Thus, the new peer is assumed to be in full mesh mode even if in fact it will be in RR mode and will only peer with RR servers. BGP route reflector allows for BGP daemons in the same AS to peer in either full-mesh or RR mode. Export policies are such that RR servers will reflect advertisements:So the new nodes, assumed to be forming full-mesh, don't get advertisements about other new nodes.
Restarting RR servers forces them to reload the node list and annotations, and correctly peer with the new nodes in RR mode.
To fix this, kube-router should watch for annotation changes on nodes, and update its internal information about which nodes are forming full-mesh, and which are joined to a RR cluster.
While waiting for a fix to be implemented, I suggest the workaround to restart RR servers be documented for newcomers!
The text was updated successfully, but these errors were encountered: