Instructions for installing KinD (Kubernetes in Docker) on macOS (tested on Tahoe 26.0.1).
Start by installing Go, if you don't already have it.
The quickest way to install Go is with Homebrew:
$ brew update
$ brew install goOnce installed, create a workspace, configure the GOPATH and add the workspace's bin folder to your system path (and update your home rc or profile file accordingly):
$ mkdir $HOME/go
$ export GOPATH=$HOME/go
$ export PATH=$PATH:$GOPATH/binInstall Docker if you don't have it already.
https://kubernetes.io/docs/reference/kubectl/overview/
Install with brew:
$ brew install kubernetes-cliInstall via Go:
go install sigs.k8s.io/kind@latestCreate a cluster and switch the context of kubectl:
$ kind create cluster --name mycluster
$ kubectl config set-context kind-mycluster
$ kubectl cluster-info