Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 580 Bytes

File metadata and controls

28 lines (17 loc) · 580 Bytes

Install Kubernetes (KIND)

KIND (Kubernetes IN Docker) runs Kubernetes clusters in Docker containers.

Steps:

  1. Install Docker (if not already installed): Refer to the Docker installation steps above.

  2. Download KIND binary:

    curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.20.0/kind-linux-amd64
  3. Make the binary executable:

    chmod +x ./kind
    sudo mv ./kind /usr/local/bin/kind
  4. Verify installation:

    kind --version