CKA training module Install kubernetes kubeadm way

Hello,

The kubernetes page was updated (Creating a cluster with kubeadm | Kubernetes)

And I can’t find the commands to install the network plugin weave as it is requested in the lab: “Practice Test- Deploy a kubernetes cluster using kubeadm”

In the solution you show a different tab from what is currently shown in the kubernetes official web page.

Hello @Gabs
You can use those commands for installation

sudo apt-get update && sudo apt-get install -y apt-transport-https curl
curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
cat <<EOF | sudo tee /etc/apt/sources.list.d/kubernetes.list
deb https://apt.kubernetes.io/ kubernetes-xenial main
EOF
sudo apt-get update
sudo apt-get install -y kubelet kubeadm kubectl
sudo apt-mark hold kubelet kubeadm kubectl

@Gabs, You can install weave plugin by referring here

1 Like