Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 521 Bytes

File metadata and controls

28 lines (19 loc) · 521 Bytes

Hands on: Set up your local Kind Cluster

Install Kind on Windows

Installation using Chocolatey:

choco install kind

Alternative methods

Using winget instead of choco: winget install Kubernetes.kind

Alternatively get latest release binary from: https://github.com/kubernetes-sigs/kind/releases rename to kind.exe add file to your path variable.

Set up your first Kind Cluster

kind create cluster
kind get clusters

kubectl cluster-info --context kind-kind

kubectl get all