0PricingLogin
Helm Academy · Lesson

Defining Releases in helmfile.yaml

Listing charts, namespaces, and values per release.

The releases List

The heart of a helmfile.yaml is the releases list. Each item describes one Helm release you want running in the cluster.

releases:
  - name: web
    namespace: frontend
    chart: ./charts/web

name and chart

Every release needs a name and a chart. The name is the Helm release name; the chart points to a local path or a repo chart.

- name: api
  chart: ./charts/api

All lessons in this course

  1. Why Helmfile Sits Above Helm
  2. Defining Releases in helmfile.yaml
  3. Environments and Per-Env Values
  4. helmfile diff, apply, and sync
← Back to Helm Academy