Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titleJoin node
$ 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
languagebash
titleRetrieve token
$ kubeadm token create --print-join-command

Finally, as As verification of the worker(s) hooking, we return to the control plane and use

...