Problem scenario
You want a quick, generic way to install kubelet on any type of Linux. What should you do?
Solution
Run these commands:
cd /tmp
curl -Lo kubelet https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubelet && chmod +x kubelet
sudo mv kubelet /usr/bin/
Test it by running this command: kubelet --version
(If you would prefer to use apt commands, because you are using a Debian/Ubuntu distribution of Linux, to install kubelet, see this posting.)