Helm
The Helm package manager is one of the most commonly used tools for managing Kubernetes manifests. Garden supports using your own Helm charts, alongside your container modules, via the kubernetes
and local-kubernetes
providers. This guide shows you how to configure and use 3rd-party (or otherwise external) Helm charts, as well as your own charts in your Garden project. We also go through how to set up tests, tasks and hot-reloading for your charts.
In this guide we'll be using the vote-helm project. If you prefer to just check out a complete example, the project itself is also a good resource.
You may also want to check out the full helm module reference.
Note: If you only need a way to deploy some Kubernetes manifests and don't need all the features of Helm, you can use the simpler kubernetes
module type instead. Check out the kubernetes-module example for more info.
Basics
First off, a couple of things to note on how the Helm support is implemented, with respect to Garden primitives:
One
helm
module maps to a single Garden service (not to be confused with Kubernetes Service resources), with the same name as the module.Because a Helm chart only contains manifests and not actual code (i.e. your containers/images), you'll often need to make two Garden modules for a single deployed service, e.g. one
container
module for your image, and then thehelm
module that references it.
Referencing external charts
Using external charts, where the chart sources are not located in your own project, can be quite straightforward. At a minimum, you just need to point to the chart, and perhaps provide some values as inputs. Here is the redis
module from our example project, for example:
For a simple setup, this may be all you need for a chart to be deployed with the rest of your stack. You can also list redis
as a dependency of one of your other services, and this Helm chart is automatically deployed ahead of it, in dependency order.
You may also add a repo
field, to reference a specific chart repository. This may be useful if you run your own chart repository for your organization, or are referencing a module that isn't contained in the default Helm repo.
Local charts
Instead of fetching the chart sources from another repository, you'll often want to include your chart sources in your Garden project. To do this, you can simply add a garden.yml
in your chart directory (next to your Chart.yaml
) and start by giving it a name:
You can also use Garden's external repository support, to reference chart sources in another repo:
Tasks and tests
You may also want to define tests and/or tasks that execute in one of the containers defined in the chart. An example of this is how we define tasks in the vote-helm/postgres
module:
Note first the serviceResource
field. This tells Garden which Kubernetes Deployment, DaemonSet or StatefulSet to regard as the primary resource of the chart. In this case, it is simply the postgres
application itself. When running the db-init
and db-clear
tasks, Garden will find the appropriate container spec in the chart based on the serviceResource
spec, and then execute that container with the task's args
and (optionally) the specified env
variables.
The same applies to any tests that you specify. Take for example the vote
module:
Instead of the top-level serviceResource
you can also add a resource
field with the same schema to any individual task or test specification. This can be useful if you have different containers in the chart that you want to use for different scenarios.
Providing values to the Helm chart
In most cases you'll need to provide some parameters to the Helm chart you're using. The simplest way to do this is via the values
field:
This will effectively create a new YAML with the supplied values and pass it to Helm when rendering/deploying the chart. This is particularly handy when you want to template in the values (see the next section for a good example).
You can also provide you own value files, which will work much the same way. You just need to list the paths to them (relative to the module root, i.e. the directory containing the garden.yml
file) and they will be supplied to Helm when rendering/deploying. For example:
In this example, some.key
is set to "prod-value"
for the prod
environment, and other.key
maintains the default value set in values.default.yaml
.
If you also set the values
field in the Module configuration, the values there take precedence over both of the value files.
Linking container modules and Helm modules
When your project also contains one or more container
modules that build the images used by a helm
module, you want to make sure the container
s are built ahead of deploying the Helm chart, and that the correct image tag is used when deploying. The vote-helm/worker
module and the corresponding worker-image
module provide a simple example:
Here the worker
module specifies the image as a build dependency, and additionally injects the worker-image
version into the Helm chart via the values
field. Note that the shape of the chart's values.yaml
file will dictate how exactly you provide the image version/tag to the chart (this example is based on the default template generated by helm create
), so be sure to consult the reference for the chart in question.
Notice that this can also work if you have multiple containers in a single chart. You just add them all as build dependencies, and the appropriate reference under values
.
Code Synchronization (Dev Mode)
When your project contains the container
module referenced by a helm
module, you can even use Garden's live code synchronization (dev mode) feature for a Helm chart. Going back to the vote
module example:
For dev mode to work you must specify serviceResource.containerModule
, so that Garden knows which module contains the sources to use for code syncing. You can also use the devMode.command
directive to, for example, start the container with automatic reloading or in development mode.
For the above example, you could then run garden deploy -w --hot-reload=vote
or garden dev --hot-reload=vote
to start the vote
service in hot-reloading mode. When you then change the sources in the vote-image module, Garden syncs the changes to the running container from the Helm chart.
Re-using charts
Often you'll want to re-use the same Helm charts for multiple modules. For example, you might have a generic template for all your backend services that configures auto-scaling, secrets/keys, sidecars, routing and so forth, and you don't want to repeat those configurations all over the place.
You can achieve this by using the base
field on the helm
module type. Staying with our vote-helm
example project, let's look at the base-chart
and api
modules:
Here, the base-chart
module contains the actual Helm chart and templates. Note the skipDeploy
flag, which we set because the module should only be used as a base chart in this case.
The api
module only contains the garden.yml
file, but configures the base chart using the values
field, and also sets its own dependencies (those are not inherited) and specifies its serviceResource.containerModule
.
In our base chart, we make certain values like name
, image.repository
and image.tag
required (using the required helper function) in order to enforce correct usage. We recommend enforcing constraints like that, so that mistakes can be caught quickly.
The result
module also uses the same base chart, but sets different values and metadata:
This pattern can be quite powerful, and can be used to share common templates across your organization. You could even have an organization-wide repository of base charts for different purposes, and link it in your project config with something like this:
The base chart can also be any helm
module (not just "base" charts specifically made for that purpose), so you have a lot of flexibility in how you organize your charts.
Production environments
You can define a remote environment as a production
environment by setting the production flag to true
. This affects some default behavior when deploying helm
modules. See the Deploying to production guide for details.
Next steps
Check out the full helm module reference for more details, and the vote-helm example project for a full project that showcases Garden's Helm support.
Also check out the Kubernetes module example for a simpler alternative, if you don't need all the features of Helm.
Last updated