.. _kubernetes-kind-cluster: Kubernetes - Create KiND Cluster ================================ 1. Get started .. code-block:: text :linenos: kind create cluster output .. code-block:: text :linenos: Creating cluster "kind" ... ✓ Ensuring node image (kindest/node:v1.25.0) đŸ–ŧ ✓ Preparing nodes đŸ“Ļ ✓ Writing configuration 📜 ✓ Starting control-plane đŸ•šī¸ ✓ Installing CNI 🔌 ✓ Installing StorageClass 💾 Set kubectl context to "kind-kind" You can now use your cluster with: kubectl cluster-info --context kind-kind Have a nice day! 👋 .. code-block:: text :linenos: kubectl cluster-info --context kind-kind output .. code-block:: text :linenos: Kubernetes control plane is running at https://127.0.0.1:56236 CoreDNS is running at https://127.0.0.1:56236/api/v1/namespaces/kube-system/services/kube-dns:dns/proxy To further debug and diagnose cluster problems, use 'kubectl cluster-info dump'. .. code-block:: text :linenos: kubectl config current-context .. code-block:: text :linenos: kind-kind