Minikube has the specific node ip address (192.168.99.100) for single cluster, if I using kubeadm to create many nodes cluster, what should I do to find this ip address?
This should be fairly straightforward: kubectl get nodes -o wide
This command display the nodes name, private and public IP addresses.
kubectl get nodes -o wide | awk -v OFS='\t\t' '{print $1, $6, $7}'
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With