GitOps Toolkit controller that patches container image tags in Git
Go to file
Stefan Prodan d25c0d0f38
Merge pull request #130 from jasonraimondi/main
Fix typo in template code example
2021-03-19 11:02:53 +02:00
.github Add CodeQL scanning to CI 2021-03-16 18:04:05 +02:00
api Allow specifying the path for manifests updates 2021-03-16 11:58:21 +02:00
config Release v0.7.0 2021-03-17 12:56:30 +02:00
controllers Record suspension metrics 2021-03-17 17:51:33 +01:00
docs Fix typo in template code example 2021-03-18 14:28:56 -07: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 Fix typo in template code example 2021-03-18 14:28:56 -07: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 image-reflector-controller/api to v0.7.1 2021-03-16 18:39:07 +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 Record suspension metrics 2021-03-17 17:51:33 +01:00
go.sum Record suspension metrics 2021-03-17 17:51:33 +01: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.