Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 708 Bytes

kind.md

File metadata and controls

27 lines (17 loc) · 708 Bytes

Kind

Kind is a tool for running local Kubernetes clusters using Docker container “nodes”. kind was primarily designed for testing Kubernetes itself, but may be used for local development or CI.

Latest version of Kind.

Kinds own documentation.

Building a local Kubernetes cluster

  1. Create a Kubernetes cluster using kind
kind create cluster --name devops-demo --image kindest/node:v1.26.6 --config kind.yaml
  1. Test the cluster
kubectl cluster-info --context kind-devops-demo
  1. Delete the cluster
kind delete cluster --name devops-demo