Create local kubernetes cluster using Kind
Posted on 01 Sep 2024
If you want to quickly spin up a local development environment of kubernets cluster, Kubernetes in docker aka Kind is the way to go Kind runs the kubernetes inside a docker container as opposed to Minikube which used to run kubernetes inside a VM Running Kind on linux requires to create a cluster configuration file cluster.yaml Here is the sample configuration which would work for most of the cases: kind: Cluster apiVersion: kind.x-k8s.io/v1alpha4 nodes: -...