Stand up Kubernetes
- Provision five nodes
- Ubuntu 20.04 LTS - Focal
- Ensure the instances are in the same subnet, and security group policy allows them communicate freely with one another.
- Disable Source / Destination Checks on the Elastic Network Interface for each instance
- Install Docker on each node
sudo apt install docker.io
Install kubeadm, kubelet, kubectl by following official documentation
Choose one node as your Kubernetes master. On that node
sudo kubeadm init --pod-network-cidr=192.168.0.0/16
On all other nodes
sudo kubeadm join <output from kubeadm init>
Copy admin credentials
-