...
Code Block | ||||
---|---|---|---|---|
| ||||
$ kubeadm join --token <token> <control-plane-host>:<control-plane-port> --token <token> --discovery-token-ca-cert-hash sha256:<hash> |
To retrieve the token later, type the command
Code Block | ||||
---|---|---|---|---|
| ||||
$ kubeadm token create --print-join-command |
Finally, as As verification of the worker(s) hooking, we return to the control plane and use
...