Open In App

Installing Helm & Kubernetes in Docker

Helm is simply a package manager for Kubernetes. It helps you manage Kubernetes applications — Helm Charts helps you define, install, and upgrade even the most complex Kubernetes application.

 

Implementation:

Follow the below steps to install Helm and Kubernetes in Docker:



Step 1: Installing Docker

Installing Docker Desktop

Installation Complete

Step 2: Enabling Kubernetes in Docker Application



Kubernetes, also known as K8s, is an open-source system for automating deployment, scaling, and management of containerized applications. If you don’t understand Kubernetes, visit this article, it contains a basic introduction to Kubernetes. If you want to install Kubernetes, just follow the simple steps:

Step 3: Adding Helm package for Kubernetes:

There are two ways by which you can add Helm package:

Using Chocolatey Package Manager(Windows):

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))

This may differ from your command shell, but the process is same. 

choco install kubernetes-helm

Windows PowerShell running choco install kubernetes-helm

Using Script:

The easiest way is to just copy the following code and paste it on your command shell :- 

curl https://raw.githubusercontent.com/helm/helm/master/scripts/get > get_helm.sh
chmod 700 get_helm.sh
./get_helm.sh

LocalHost prompt window after running the code

 

Article Tags :