- Getting Started with Kubernetes(Second Edition)
- Jonathan Baier
- 64字
- 2025-04-04 19:14:14
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 this command:
$ kubectl get nodes
If all went well, this will show three nodes and one master, as shown here:

Calico setup