0
0
Kubernetesdevops~15 mins

Installing Helm in Kubernetes - Try It Yourself

Choose your learning style9 modes available
Installing Helm on Kubernetes
📖 Scenario: You are setting up a Kubernetes cluster and want to manage applications easily. Helm is a tool that helps install and manage software on Kubernetes.In this project, you will learn how to install Helm step-by-step on your system.
🎯 Goal: Learn to install Helm by creating the necessary setup, configuring environment variables, running the installation command, and verifying the installation.
📋 What You'll Learn
Access to a terminal or command line interface
Basic understanding of command line commands
Kubernetes cluster or minikube installed (optional for verification)
💡 Why This Matters
🌍 Real World
Helm is widely used to simplify deploying and managing applications on Kubernetes clusters.
💼 Career
Knowing how to install and verify Helm is essential for DevOps engineers working with Kubernetes.
Progress0 / 4 steps
1
Download the Helm installation script
Use the command curl -fsSL https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash to download the Helm installation script.
Kubernetes
Need a hint?

This command downloads and runs the official Helm install script.

2
Set up environment variable for Helm
Set the environment variable HELM_INSTALL_DIR to /usr/local/bin using the command export HELM_INSTALL_DIR=/usr/local/bin.
Kubernetes
Need a hint?

This sets where Helm will be installed.

3
Run Helm version command to verify installation
Run the command helm version --short to check the installed Helm version.
Kubernetes
Need a hint?

This command shows the Helm version installed.

4
Display the Helm version output
Print the output of helm version --short to confirm Helm is installed correctly.
Kubernetes
Need a hint?

You should see a version string starting with 'v3' indicating Helm 3 is installed.