Stand up Kubernetes

    1. Provision five nodes
      1. Ubuntu 20.04 LTS - Focal
      2. Ensure the instances are in the same subnet, and security group policy allows them communicate freely with one another.
      3. Disable Source / Destination Checks on the Elastic Network Interface for each instance
    2. Install Docker on each node
      1. sudo apt install docker.io
    1. Install kubeadm, kubelet, kubectl by following official documentation

    2. Choose one node as your Kubernetes master. On that node sudo kubeadm init --pod-network-cidr=192.168.0.0/16

    3. On all other nodes sudo kubeadm join <output from kubeadm init>

    4. Copy admin credentials

    The Calico datastore