Based on: https://kubernetes.io/docs/setup/independent/install-kubeadm/
sudo apt-get install ansible
ssh-copy-id <user>@<host>
ssh <user>@<host>
sudo apt-get install python
sudo systemctl status kubelet
sudo journalctl -u kubelet
kubectl run helloworld --image=tutum/hello-world --port=80 --replicas=2
Expose it:
kubectl expose deployment helloworld --type=LoadBalancer
List it:
kubectl get services
Test it:
curl http://localhost:31826