The GitOps Toolkit Helm reconciler, for declarative Helming
Go to file
stefanprodan 14e5bd9844 Use Alpine as container image 2020-07-09 20:21:30 +03:00
.github e2e: dependencies test 2020-07-09 12:54:30 +02:00
api/v2alpha1 Implement event recording 2020-07-09 20:19:08 +03:00
config Various small changes 2020-07-09 18:04:45 +02:00
controllers Implement event recording 2020-07-09 20:19:08 +03:00
docs Simple README 2020-07-09 15:42:53 +02:00
hack Generate API documentation 2020-07-09 15:03:59 +02:00
.gitignore Init 2020-05-05 22:35:49 +02:00
Dockerfile Use Alpine as container image 2020-07-09 20:21:30 +03:00
LICENSE Support Helm install action 2020-07-08 16:23:38 +02:00
MAINTAINERS Support Helm install action 2020-07-08 16:23:38 +02:00
Makefile Generate API documentation 2020-07-09 15:03:59 +02:00
PROJECT Init 2020-05-05 22:35:49 +02:00
README.md Various small changes 2020-07-09 18:04:45 +02:00
go.mod Various small changes 2020-07-09 18:04:45 +02:00
go.sum Implement event recording 2020-07-09 20:19:08 +03:00
main.go Implement event recording 2020-07-09 20:19:08 +03:00

README.md

helm-controller

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
  • fetches artifacts produced by source-controller from Source objects
  • watches Source objects for revision changes
  • performs Helm actions as configured in the HelmRelease
  • runs HelmReleases in a specific order, taking into account the depends-on relationship