Kube-proxy

Kube-proxy helps in service networking rule creation. Once a service is created in kubernetes, it is assigned an IP. Kube-proxy attaches an iptables to each node and update the service-ip:port and forward-to (back-end pod ip) into the iptables. So that service is reachble from all the nodes. You can install kube-proxy using the kubenetes binaries.

Next