1) From the kubernetes architecture diagram, one can see that Internet (outside world) is connecting to kubernetes cluster via proxy running in one of the nodes. What if the node itself goes down completely, In this case outside world (Internet) won't be able to contact kubernetes nodes. How actually this works?
2) I can also use API server proxy to communicate with the service as:-
http://{SERVER_IP}:8080/api/v1/proxy/namespaces/default/services/nginx-service/
In this case, does API server picks one of the proxy running on a node and route the request?
Can anyone explain this?
Thanks