I am working with kops to maintain kubernetes cluster, but got a little bit confused about how it join the new node to cluster.
At first, I think it should be using ELB dns name to configure the kubelet in each node as the api server. but I cannot find anything support.
Then, I find that in userdata of the new created instance, there are some config items for kubelet:
`kubeconfigPath: /var/lib/kubelet/kubeconfig`
when I login the instance and find the server configured in the kubeconfig file is another dns name instead of my ELB, try to resolve it but failed. After tried to apply this kubeconfig to another kubelet, it shows error with: Unable to connect to the server.
So how it work in kops when we add new nodes? I can't find any document..
