Skip to main content

Install Tools

In this document, we'll install kubectl and Helm to control Kubernetes. Also, we'll install Multipass to setup some Ubuntu-based VM environment.

Install kubectl

kubectl is the Kubernetes command line tool(CLI) that lets you check and control K8S clusters.

info

Follow the link below if you have some problem with installation guide.
https://kubernetes.io/docs/tasks/tools/#kubectl

  1. Download kubectl from following link:
    https://dl.k8s.io/release/v1.28.4/bin/windows/amd64/kubectl.exe
  2. Move downloaded kubectl.exe to the folder you want.
  3. Add folder from Step 2 to your PATH environment variable.

Type kubectl version --client command to check installation.

Check kubectl installation

Install Helm

Helm is the package manager for Kubernetes.

info

Follow the link below if you have some problem with installation guide.
https://helm.sh/docs/intro/install/

  1. Download desired version of Helm from following link:
    https://github.com/helm/helm/releases
  2. Unzip and move helm.exe to the folder you want.
  3. Add folder from Step 2 to your PATH environment variable.

Type helm version command to check installation.

Check Helm installation

Install Multipass

Multipass is the tool to generate cloud-style Ubuntu VMs quickly, made by Canonical.

info

Follow the link below if you have some problem with installation guide.
https://multipass.run/install

  1. Download installation file from following link and execute:
    https://multipass.run/download/windows

Type multipass version command to check installation.

Check Multipass installation