Let me set the stage: You’re just starting your journey into Kubernetes and you’re thrilled at the idea of developing your first application or service. Your first step is to deploy a Kubernetes cluster so you can start building but almost immediately realize how challenging a task that is.

From the official https://kind.sigs.k8s.io: kind is a tool for running local Kubernetes clusters using Docker container “nodes.”

First, you would need to delete the single node cluster with the command: kind delete cluster --name=tns-test

Do this with the command: In that file, paste the following contents: kind: Cluster apiVersion: kind.x-k8s.io/v1alpha4 nodes: - role: control-plane - role: worker

Related Articles