You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ ssh root@[MASTER_NODE]
$ kubeadm init --config kubeadm-config.yaml
In the output of `kubeadm init` there will be a kubeadm join command, launch it on every desired worker node
For example:
$ ssh root@[WORKER_NODE]
$ kubeadm join 172.16.52.5:6443 --token [TOKEN] \
--discovery-token-ca-cert-hash sha256:[SHA256_HASH]
Network add-on for Kubernetes
Here we'll use Weave, but another one can be used.
$ kubectl apply -f https://github.com/weaveworks/weave/releases/download/v2.8.1/weave-daemonset-k8s.yaml
$ export KUBECONFIG=/etc/kubernetes/admin.conf