helm 101
This is an adapted version of a blog post I wrote for my engineering team’s documentation. We were starting to adopt Helm as one of our deployment tools, and part of my work was to make it more accessible to developers who were used to a deployment of Java services using Kustomize for configuration.
What is Helm?
Helm is a package management tool for Kubernetes, written in Go. It works in a similar way to Homebrew or Apt, or even like Maven for Java. It provides a way to automate deployment processes and streamline the configuration of sets of Kubernetes resources. In general, Helm tries to reuse as much config definition as possible so the deployment of these resources is as quick and as lightweight as possible.
Helm uses Semantic Versioning for its releases, so it encourages projects to do so too. Helm also gives you a lot of flexibility when configuring Kubernetes resources you might want to deploy, since it allows you to revert changes, see revision history, and edit the configuration files for resources that would typically be statically declared and harder to change once they are created.
Charts
A Chart.yaml file as it is originally generated by the command helm create
A chart is the Helm term for a Kubernetes package. It is a set of files in a directory structure that describes the resources we want to install with Kubernetes. Like a nautical chart, it plots the way a Kubernetes application should be installed.
The main parts of a chart are
the Chart.yaml file, which contains metadata about the chart: the chart version, the name and description of the chart, the author of the chart…,
the chart’s templates, the set of directives we tell Kubernetes to execute,
and potentially also a values.yaml file, where we can specify the default config for each installation of a certain chart. This can be overridden when installing through CLI.
Charts can also reference other charts as dependencies, which helps you reuse existing functionality from charts you might already have. This is done through the Charts
folder within a chart.
The structure of a Helm chart directory
We can search for charts on the Artifact Hub, the online registry for Helm charts, or on repositories you might have added to your local system through the command helm add repo
. These repositories remain cached on your local system until you update them through the CLI.
If you write a Helm chart, you can package the directory and files into a single .tgz file that can then be easily shared and/or uploaded to a chart repository.
Installations
An installation is a specific instance of a chart in your Kubernetes cluster. This might have been run with specific parameters or values (via the --set
flag) that were not originally in the chart definition files, so charts and installations are not the same thing.
Releases
A release is a specific combination of configuration and chart version for an installation. The first installation of a chart is always the first release, but when we upgrade the installation, we are creating a second release, even though it’s the same installation. Rollbacks also count as releases.
The output we get when we deploy an installation. If we run the commands on the NOTES section in the right order, we should obtain the link to our deployed app.
Helm vs. Kustomize
While Helm is a package manager, Kustomize is a configuration manager.
We have been using Kustomize up until now, which works with a series of declarative templates to standardize configuration in Kubernetes. What Kustomize does is compare these templates to existing Kubernetes YAML manifests, and change/refactor anything that might not match in the manifests.
Before Helm v3 came out, Kustomize offered some advantages over Helm, because Helm used to require an extra dependency called Tiller, which was a pod that offered you elevated privileges to change configuration.
Kustomize didn’t require Tiller, but now Helm doesn’t either as long as you’re using the most recent version.
You can read a more in-depth comparison here.
From chart to deployment: the process
The chart is then read by Kubernetes, using the kubectl tool, and transformed into Kubernetes manifests (a specification of a Kubernetes API object in JSON or YAML format). Kubernetes understands these manifests and turns them into resources.
A list of useful Helm CLI commands
helm help
: general help texthelm version
: check version--kube-context
: flag that overrides kubernetes configuration contexthelm repo add [NAME] [URL] [flags]
: adds a chart repositoryhelm repo list
: shows all the chart repositories installed.can also be used as
helm repo remove
,update
,index
, andadd
helm search repo [KEYWORD]
: search the chart repositories for somethinghelm search
: search for chartshelm pull
: download a chart to your local directory to viewhelm install [INSTALLATION (chart instance) NAME] [REPOSITORY/NAME]
: upload the chart to Kuberneteshelm list
: list releases of chartshelm completion
: generate autocompletion scripts for the specified shellhelm create
: create a new chart with the given namehelm dependency
: manage a chart's dependencieshelm env
: helm client environment informationhelm get [notes/values/manifest]
: download extended information of a named releasehelm history
: fetch release historyhelm install
: install a charthelm lint
: examine a chart for possible issueshelm package
: package a chart directory into a chart archivehelm plugin
: install, list, or uninstall Helm pluginshelm pull
: download a chart from a repository and (optionally) unpack it in local directoryhelm push
: push a chart to remotehelm registry
: login to or logout from a registryhelm rollback
: roll back a release to a previous revisionhelm search
: search for a keyword in chartshelm show
: show information of a charthelm status
: display the status of the named releasehelm template
: locally render templates. designed to isolate the template-rendering process of Helm from its installation/upgrade logichelm test
: run tests for a releasehelm uninstall
: uninstall a releasehelm upgrade
: upgrade a releasehelm verify
: verify that a chart at the given path has been signed and is validhelm version
: print the client version information--namespace
or-n
: flag that (followed by the namespace name) identifies which namespace you want to use/work with
Other useful resources
What is Helm? Article on the Harness website
Learning Helm, by Matt Butcher, Matt Farina, and Josh Dolitsky. 2021, O’Reilly.
Managing Kubernetes Resources Using Helm, by Andrew Block and Austin Dewey. 2022, Packt Publishing.
ArtifactHub.io, an online registry of Kubernetes packages, including Helm charts.
Kubernetes Glossary, from the official documentation