A repository holding info on a KinD cluster creation for the education/testing purposes
The following should be installed for using kind
:
- go
- kubectl
Check the official guide: link.
Or perform the following commands:
go install sigs.k8s.io/kind@v0.23.0
export PATH=$PATH:~/go/bin/
Some commands examples:
kind create cluster --config kind-config.yml
-- create a clusterkind delete cluster
-- delete the default cluster (namedkind
)