Install k8s with kubeadm By Sarthak Tyagi
Run in both master and worker nodes
# disable swap
sudo swapoff -a
# Create the .conf file to load the modules at bootup
cat <<EOF | sudo tee /etc/modules-load.d/k8s.conf
overlay
br_netfilter
EOF
sudo modprobe overlay
sudo modprobe br_netfilter
# ...
sarthakwrites.hashnode.dev2 min read