Setting up Kubernetes Dashboard with Kind
Introduction In a previous article, I guided you through using Helm to deploy on Google Kubernetes Engine . However, if you want to cut down costs by using Kubernetes  in your local environment instead of relying on a cloud provider during development, then Kind  is your go-to. There are several tools to help set up Kubernetes  locally, such as MiniKube , Kind , K3S , KubeAdm , and more. Each tool has its own pros and cons. In this article, I'll walk you through using Kind  to quickly set up a Kubernetes  cluster on Docker . Kind stands out for its compactness, making Kubernetes  start up quickly, being user-friendly, and supporting the latest Kubernetes  versions. Working with Kind Firstly, follow the instructions here to install Kind according to your operating system. If you're using Ubuntu , execute the command: [ $( uname  -m ) = x86_64 ] && curl  -Lo  ./kind  https://kind.sigs.k8s.io/dl/v0.23.0/kind-linux-amd64 chmod  +x  ./kind sudo  mv  ./kind  /usr/local/bin/ki...