Skip to main content
Warning This document has not been updated for a while now. It may be out of date.
Last updated: 16 Aug 2021

govuk-infrastructure: 6. Use Helm for application package management

Date: 2021-08-16

Status

Accepted

Context

We require something more sophisticated than handcrafted YAML when defining an application's Kubernetes resources, to ensure that applications can be defined once, and deployed to multiple targets with differing configurations. At a high level, we require a means to define an application's Kubernetes resources as an installable package, with configuration options passed in at deploy time.

There are many options for packaging Kubernetes applictions, including but not limited to:

While we are currently using Terraform for AWS infrastructure management, we should maintain a strict separation of concerns between managing cloud infrastructure and the software applications that run on top; using a single tool for both will inevitably lead to blurred lines between the two. In addition, Terraform's kubernetes support is still quite new, and can lag behind Kubernetes itself.

While Kustomize has been adopted into the main Kubernetes project, that decision has not been without controversy. Kustomize has also not yet seen wide adoption within the industry, and offers little beyond the basic functions of interpolating values into YAML files.

Helm by comparison has widespread industry adoption, a large number of existing packages, and widespread support in the wider devops and development ecosystem (e.g. Github Actions, CircleCI Orb, VS Code extension, Terraform provider).

Decision

Use Helm v3+.

Consequences

We can make use of existing Helm charts for supporting tools and services:

While not required at this stage, we will likely want to consider introducing a Helm chart repository at some stage in the future.

Helm provides a release history for an installed chart, and support for rolling back to previous releases. Care must be taken when rolling back an application with a dependency on database migrations however.

Helm charts are versioned, entirely separately from the application version. Care must be taken to avoid confusion between the two, particularly when communicating with chart authors in development teams.

Helm adds Go templates to YAML, and YAML is still YAML. The wisdom of applying text templating to JSON-derived data structures aside, we should be conscious of YAML idiosyncracies when authoring charts or defining values.

Helm and the many other alternatives are not mutually exclusive, so our adoption of Helm does not prevent the use of any other tools, now or in the future. If development teams wish to adopt Kustomize or Skaffold instead there is nothing in principle to prevent that.