Vanila Kubernetes Platform with Monitoring, Logging & Backup
https://www.katacoda.com/courses/kubernetes/getting-started-with-kubeadm
OS CentOS 7
to be ready before hand to start kubernetes deployment using kubeadm
On Master host run following command
curl -s https://raw.githubusercontent.com/cloudcafetech/kubesetup/master/host-setup.sh | KUBEMASTER=<MASTER-IP> bash -s master
On Node host run following command
curl -s https://raw.githubusercontent.com/cloudcafetech/kubesetup/master/host-setup.sh | KUBEMASTER=<MASTER-IP> bash -s node
Find Kubernetes version
curl -s https://packages.cloud.google.com/apt/dists/kubernetes-xenial/main/binary-amd64/Packages | grep Version | awk '{print $2}' | more
On Master host run following command
curl -s https://raw.githubusercontent.com/cloudcafetech/kubesetup/master/host-setup.sh | KUBEMASTER=<MASTER-IP> K8S_VER=1.18.2 bash -s master
On Node host run following command
curl -s https://raw.githubusercontent.com/cloudcafetech/kubesetup/master/host-setup.sh | KUBEMASTER=<MASTER-IP> K8S_VER=1.18.2 bash -s node