GitOps Toolkit controller that patches container image tags in Git
Go to file
Michael Bridgen cfa5a9c574 Phrase the message template example as YAML not go
The message template is used in YAML files, not in go code. I've also
explained up-front that it's a text template -- something not
mentioned to this point.

Signed-off-by: Michael Bridgen <michael@weave.works>
2021-03-04 13:28:37 +00:00
.github Refactor release workflow 2021-02-23 18:04:19 +02:00
api Update dependencies 2021-02-23 16:57:47 +02:00
config Release v0.6.1 2021-02-25 16:15:51 +01:00
controllers Make the image policy name available to templates 2021-03-03 13:01:29 +00:00
docs Phrase the message template example as YAML not go 2021-03-04 13:28:37 +00:00
hack Add target for API docs generation to Makefile 2020-11-30 14:17:03 +00:00
pkg Make the image policy name available to templates 2021-03-03 13:01:29 +00:00
.gitignore Test controller to the point of committing changes 2020-07-23 18:20:35 +01:00
CHANGELOG.md Release v0.6.1 2021-02-25 16:15:51 +01:00
CODE_OF_CONDUCT.md Add license, DCO and COC 2020-08-11 10:26:03 +03:00
CONTRIBUTING.md Make the API package a dedicated module 2020-11-19 12:16:17 +01:00
DCO Add license, DCO and COC 2020-08-11 10:26:03 +03:00
Dockerfile Use musl and libgit2 packages from v3.13 branch 2021-02-10 22:34:38 +01:00
LICENSE Add license, DCO and COC 2020-08-11 10:26:03 +03:00
MAINTAINERS Note maintainers shared from fluxcd/flux2 2020-11-27 10:46:57 +00:00
Makefile Update dependencies 2021-02-23 16:57:47 +02:00
PROJECT Change package name and fixup imports and paths 2020-08-10 18:09:57 +01:00
README.md Document libgit2 requirement in README 2021-01-14 14:19:22 +01:00
go.mod Release v0.6.1 2021-02-25 16:15:51 +01:00
go.sum Release v0.6.0 2021-02-24 16:22:23 +02:00
main.go Enable pprof endpoints on metrics server 2021-02-07 12:52:14 +01:00

README.md

Image automation controller

This controller automates updates to YAML when new container images are available.

Its sibling, image-reflector-controller, scans container image repositories and reflects the metadata in Kubernetes resources. This controller reacts to that image metadata by updating YAML files in a git repository, and committing the changes.

How to install it

Please see the installation and use guide.

How to work on it

The shared library libgit2 needs to be installed to test or build locally. The version required corresponds to the version of git2go (which are Go bindings for libgit2), according to this table.

See https://github.com/fluxcd/source-controller/blob/main/CONTRIBUTING.md#installing-required-dependencies for instructions on how to install libgit2.