VOOZH about

URL: https://thenewstack.io/how-to-install-the-helm-kubernetes-package-manager-on-ubuntu-server/

⇱ How to Install the Helm Kubernetes Package Manager on Ubuntu Server - The New Stack


TNS
SUBSCRIBE
Join our community of software engineering leaders and aspirational developers. Always stay in-the-know by getting the most important news and exclusive content delivered fresh to your inbox to learn more about at-scale software development.
REQUIRED
It seems that you've previously unsubscribed from our newsletter in the past. Click the button below to open the re-subscribe form in a new tab. When you're done, simply close that tab and continue with this form to complete your subscription.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.
Welcome and thank you for joining The New Stack community!
Please answer a few simple questions to help us deliver the news and resources you are interested in.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Great to meet you!
Tell us a bit about your job so we can cover the topics you find most relevant.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Welcome!

We’re so glad you’re here. You can expect all the best TNS content to arrive Monday through Friday to keep you on top of the news and at the top of your game.

What’s next?

Check your inbox for a confirmation email where you can adjust your preferences and even join additional groups.

Follow TNS on your favorite social media networks.

Become a TNS follower on LinkedIn.

Check out the latest featured and trending stories while you wait for your first TNS newsletter.

PREV
1 of 2
NEXT
VOXPOP
As a JavaScript developer, what non-React tools do you use most often?
Angular
0%
Astro
0%
Svelte
0%
Vue.js
0%
Other
0%
I only use React
0%
I don't use JavaScript
0%
Thanks for your opinion! Subscribe below to get the final results, published exclusively in our TNS Update newsletter:
NEW! Try Stackie AI
From clobbered drafts to real-time sync
Apr 14th 2026 10:00am, by David Moore
TypeScript 6.0 RC arrives as a bridge to a faster future
Mar 14th 2026 9:00am, by Darryl K. Taft
Mastra empowers web devs to build AI agents in TypeScript
Jan 28th 2026 11:00am, by Loraine Lawson
2020-02-05 10:27:34
How to Install the Helm Kubernetes Package Manager on Ubuntu Server
tutorial,
Kubernetes

How to Install the Helm Kubernetes Package Manager on Ubuntu Server

a Walkthrough on how to install Helm on Ubuntu, for your Kubernetes deployment.
Feb 5th, 2020 10:27am by Jack Wallen
👁 Featued image for: How to Install the Helm Kubernetes Package Manager on Ubuntu Server
Feature image by Harry Strauss from Pixabay.

Kubernetes is one of those technologies that can, at times, be rather daunting in its complexity.

There are so many tools to support Kubernetes. So very, very many tools. And some of these tools carry with them even more complexity. So when you layer one challenge onto another, things start to get a bit heavy. That’s why when you find a tool that can actually make things a bit easier, you jump on it.

Such is the case with Helm. In short, Helm is an application manager for Kubernetes that streamlines the installation and management of applications. In other words, Helm is to Kubernetes what apt, dnf, and zypper are to Ubuntu, RHEL, and SUSE, respectively.

We are going to focus on the installation of the Helm client, specifically on Ubuntu Server 18.04.

What You Need

To successfully install Helm, you’ll need a running Kubernetes cluster and a user with sudo access. That’s it. It is, however, crucial that you have your Kubernetes cluster up and running before you attempt to install and use Helm.

If your Kubernetes cluster is ready, let’s get Helm up and running.

Installing Helm

Believe it or not, the installation of Helm is quite easy. This is made so because of a ready available binary executable that doesn’t actually require anything in the way of installation, other than downloading and moving the file into the proper location.

To do this, log into the master node of your Kubernetes cluster and download the Helm file with the command:

wget https://get.helm.sh/helm-v3.0.2-linux-amd64.tar.gz

Once the file has downloaded, unpack it with the command:

tar xvf helm-v3.0.2-linux-amd64.tar.gz

With the file unpacked, move the helm executable into the /usr/local/bin directory with the command:

sudo mv linux-amd64/helm /usr/local/bin/

You can then delete the directory and downloaded helm file with the commands:

rm helm-v3.0.2-linux-amd64.tar.gz

rm -rf linux-amd64

With everything cleaned up, check to make sure the Helm installation worked by issuing the command:

helm version

You should see displayed release numbers including the BuildInfo, GitCommit, GitTreeState, and GoVersion (Figure 1).

👁 Image

Figure 1: Helm version responds, so we’re ready to continue.

Add a Chart Repository

Helm depends upon chart repositories to function. A chart repository is a remote server (using the HTTP protocol) that holds an index.yaml file and (optionally) packaged charts. A chart is a collection of files that describe a set of Kubernetes resources. A chart may be used to deploy a simple pod or one that contains a complex stack of applications and services.

Charts are files, laid out in a specific directory tree, which can be packaged into versioned archives and deployed. A typical chart directory tree might look like this:

AppName/

   Chart.yaml

   LICENSE

   README.md

   values.yaml

   values.schema.json

   charts/

   crds/

   templates/

   templates/NOTES.txt

The entire tree is packaged into a chart that can be easily deployed, using Helm. In order to do this, you must first add a chart repository. Say, for example, you want to add the official stable Helm charts. To do this, go back to your Kubernetes master node and issue the command:

helm repo add stable https://kubernetes-charts.storage.googleapis.com/

Once the repository has been added, Helm will report the task complete (Figure 2).

👁 Image

Figure 2: The Helm repository has been added.

But what does that stable repository contain? List out the contents with the command:

helm search repo stable

You should see a listing of all the available charts (Figure 3).

👁 Image

Figure 3: The charts available from the Helm stable repository.

Installing a Chart

Let’s install a chart from the Helm stable repository. First let’s update everything with the command:

helm repo update

Now, we’ll install a chart from the repository. Say you want to install the chart for Nextcloud. Do that with the command:

helm install stable/nextcloud --generate-name

Once the chart is installed, you’ll be given clear instructions on how to complete the deployment (Figure 4).

👁 Image

Figure 4: The Nextcloud chart has been added.

Make sure to follow the instructions given to you by the chart install output, otherwise you won’t be able to complete the deployment of the application. Each chart will have different instructions, some of them more complicated and demanding than others. Even so, you will know exactly what steps you must take next, in order to finish up the deployment.

Conclusion

If Kubernetes tends to overwhelm you with complexity, you should definitely add Helm into the mix to level that challenging playing field. Or even if you’ve mastered Kubernetes, there’s no reason why you can’t add a tool to make the process a bit more efficient. Helm will do that for you.

TRENDING STORIES
Jack Wallen is what happens when a Gen Xer mind-melds with present-day snark. Jack is a seeker of truth and a writer of words with a quantum mechanical pencil and a disjointed beat of sound and soul. Although he resides...
Read more from Jack Wallen
SHARE THIS STORY
TRENDING STORIES
SHARE THIS STORY
TRENDING STORIES
TNS DAILY NEWSLETTER Receive a free roundup of the most recent TNS articles in your inbox each day.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.