InterviewSolution
| 1. |
What happens if daemonset can be set to listen on a specific interface since the Anycast IP will be assigned to a network interface alias |
|
Answer» Yes, hostnetwork for the daemonset gets you to the host, so an INTERFACE with an Anycast IP should work. You'll have to proxy the data through the daemonset.Daemonset allows you to run the pod on the host network, so anycast is possible.Daemonset allows us to run the pod on the host network At the risk of being PEDANTIC, any pod can be specified to run on the host network. The only thing special about DaemonSet is you get one pod per host. Most of the issues with RESPECT to IP space is solved by daemonsets. As kube-proxy is run as daemonset, the node has to be Ready for the kube-proxy daemonset to be up. |
|