- Getting Started with Kubernetes
- Jonathan Baier Jesse White
- 63字
- 2021-06-10 19:47:03
Joining the cluster
Now, we need to run the join command we copied earlier, on each of our node instances:
$ kubeadm join --token=<some token> <master ip address>
Once you've finished that, you should be able to see all nodes from the master by running the following command:
$ kubectl get nodes
If all went well, this will show three nodes and one master, as shown here:
