The GitOps Toolkit Helm reconciler, for declarative Helming
Go to file
Stefan Prodan 1f63b8a40a Prevent snapshot drift when upgrading to API v2
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
(cherry picked from commit 56b5f14b34)
2024-05-09 08:23:30 +00:00
.github build(deps): bump the ci group across 1 directory with 2 updates 2024-05-08 03:34:21 +00:00
api Add test cases for Summarize() and DetermineReleaseState() 2024-05-07 23:13:47 +02:00
config Add test cases for Summarize() and DetermineReleaseState() 2024-05-07 23:13:47 +02:00
docs Add test cases for Summarize() and DetermineReleaseState() 2024-05-07 23:13:47 +02:00
hack Update copyright year (GA API) 2024-05-03 17:35:01 +03:00
internal Prevent snapshot drift when upgrading to API v2 2024-05-09 08:23:30 +00:00
tests/fuzz Build with Go 1.22 2024-04-02 13:53:40 +03:00
.gitignore Refactor fuzzing 2022-01-17 20:45:16 +00:00
.goreleaser.yaml Disable goreleaser changelog 2023-06-22 14:59:51 +03:00
CHANGELOG.md Release v0.37.4 2024-02-05 08:19:18 +00:00
CODE_OF_CONDUCT.md Add DCO and code of conduct 2020-07-10 09:18:34 +03:00
DCO Add DCO and code of conduct 2020-07-10 09:18:34 +03:00
DEVELOPMENT.md Align go.mod version with Kubernetes (Go 1.20) 2023-06-27 10:18:25 +03:00
Dockerfile Build with Go 1.22 2024-04-02 13:53:40 +03:00
LICENSE Support Helm install action 2020-07-08 16:23:38 +02:00
MAINTAINERS Update MAINTAINERS info 2022-08-31 16:55:05 +02:00
Makefile Promote `HelmRelease` API to v2 (GA) 2024-05-03 16:25:14 +03:00
PROJECT Promote `HelmRelease` API to v2 (GA) 2024-05-03 16:25:14 +03:00
README.md Add API docs for `HelmRelease` v2 2024-05-03 16:30:58 +03:00
go.mod build(deps): bump golang.org/x/text in the go-deps group 2024-05-07 23:41:54 +02:00
go.sum build(deps): bump golang.org/x/text in the go-deps group 2024-05-07 23:41:54 +02:00
main.go Update samples to GA APIs 2024-05-03 17:12:22 +03:00

README.md

helm-controller

CII Best Practices e2e report license release

The helm-controller is a Kubernetes operator, allowing one to declaratively manage Helm chart releases. It is part of a composable GitOps toolkit and depends on source-controller to acquire the Helm charts from Helm repositories.

The desired state of a Helm release is described through a Kubernetes Custom Resource named HelmRelease. Based on the creation, mutation or removal of a HelmRelease resource in the cluster, Helm actions are performed by the operator.

overview

Features

  • Watches for HelmRelease objects and generates HelmChart objects
  • Supports HelmChart artifacts produced from HelmRepository, GitRepository and Bucket sources
  • Fetches artifacts produced by source-controller from HelmChart and OCIRepository objects
  • Watches HelmChart objects for revision changes (including semver ranges for charts from HelmRepository sources)
  • Performs automated Helm actions, including Helm tests, rollbacks and uninstalls
  • Offers extensive configuration options for automated remediation (rollback, uninstall, retry) on failed Helm install, upgrade or test actions
  • Runs Helm install/upgrade in a specific order, taking into account the depends-on relationship defined in a set of HelmRelease objects
  • Reports Helm release statuses (alerting provided by notification-controller)
  • Built-in Kustomize compatible Helm post renderer, providing support for strategic merge, JSON 6902 and images patches
  • Supports detecting and correcting in-cluster changes compared to the desired state of the Helm release

Guides

Specifications