Search⌘ K

Install KinD and Helm on Windows

Explore how to set up a Windows environment for Kubernetes development by installing KinD, Helm, Helmfile, and Docker. This lesson guides you through using package managers and verifying installations, enabling you to begin deploying Kubernetes apps with Helm efficiently.

We'll cover the following...

Docker

We can install Docker on Windows based on the official documentation. Open a terminal and follow the following steps:

  1. Download the installer from the official site: https://docs.docker.com/desktop/windows/install/.

  2. Run the installer and follow all the steps.

  3. Verify that it has been correctly installed by opening a terminal and running the following command:

Shell
docker run hello-world
...