Projects

In this section, you will configure the components for the control plane on the master/controller nodes.

  1. Create the Kubernetes configuration directory:

    sudo mkdir -p /etc/kubernetes/config
  2. Download the official Kubernetes release binaries:

    wget -q --show-progress --https-only --timestamping \
    "https://storage.googleapis.com/kubernetes-release/release/v1.21.0/bin/linux/amd64/kube-apiserver" \
    "https://storage.googleapis.com/kubernetes-release/release/v1.21.0/bin/linux/amd64/kube-controller-manager" ...
    Learn More