Skip to content

Kind

With Kind we can create a local Kubernetes cluster. This is useful for testing and development.

The files are in the kind folder.

kind create cluster --name example-cluster --config kind-config.yaml

Point kubectl to the local cluster

The context is kind- followed by the cluster name.

kubectl cluster-info --context kind-example-cluster

Get the config

kubectl config view --minify --flatten --context kind-example-cluster

Last update: 2023-09-27