0Pricing
Helm Academy · Lesson

Flux HelmRelease and HelmRepository

Declaring Helm sources and releases the Flux way.

Flux Splits the Job

Flux separates concerns into two resources: a HelmRepository defines where charts come from, and a HelmRelease defines what to install.

Declaring a Source

A HelmRepository tells Flux to poll a chart repo on an interval, caching its index so releases can resolve chart versions.

kind: HelmRepository
metadata:
  name: bitnami
spec:
  url: https://charts.bitnami.com/bitnami
  interval: 1h

All lessons in this course

  1. The GitOps Model for Helm Releases
  2. Deploying Charts with an Argo CD Application
  3. Flux HelmRelease and HelmRepository
  4. Drift Detection and Automated Sync
← Back to Helm Academy