The GitOps Toolkit source management component
Go to file
Hidde Beydals 99b74da044 api/artifact: add checksum field to artifact
This includes a change to how the revision for HelmRepository sources is
recorded, as this will now equal to the generated timestamp from the index
in RFC3339Nano format.
2020-09-09 13:41:56 +02:00
.github/workflows Publish amd64/arm64 images to GHCR 2020-09-04 13:41:50 +03:00
api api/artifact: add checksum field to artifact 2020-09-09 13:41:56 +02:00
config api/artifact: add checksum field to artifact 2020-09-09 13:41:56 +02:00
controllers api/artifact: add checksum field to artifact 2020-09-09 13:41:56 +02:00
docs api/artifact: add checksum field to artifact 2020-09-09 13:41:56 +02:00
hack Generate API documentation 2020-06-19 16:45:05 +02:00
internal/helm Upgrade blang/semver from v3.5.0 to v4.0.0 2020-08-31 10:03:47 +02:00
pkg/git Upgrade blang/semver from v3.5.0 to v4.0.0 2020-08-31 10:03:47 +02:00
.gitignore ci: Add release workflow 2020-04-13 18:28:22 +03:00
CHANGELOG.md Release v0.0.14 2020-09-04 15:41:12 +03:00
CODE_OF_CONDUCT.md Add governance files like DCO, MAINTAINERS, CoC 2020-04-12 23:54:35 +02:00
CONTRIBUTING.md Add governance files like DCO, MAINTAINERS, CoC 2020-04-12 23:54:35 +02:00
DCO Add governance files like DCO, MAINTAINERS, CoC 2020-04-12 23:54:35 +02:00
Dockerfile Publish amd64/arm64 images to GHCR 2020-09-04 13:41:50 +03:00
LICENSE Initial commit 2020-04-05 11:55:46 +03:00
MAINTAINERS Add governance files like DCO, MAINTAINERS, CoC 2020-04-12 23:54:35 +02:00
Makefile Make various targets work after api pkg change 2020-08-20 10:32:24 +02:00
PROJECT Change CRD domain to 'source.toolkit.fluxcd.io' 2020-07-30 21:50:46 +02:00
README.md Change CRD domain to 'source.toolkit.fluxcd.io' 2020-07-30 21:50:46 +02:00
go.mod Release v0.0.14 2020-09-04 15:41:12 +03:00
go.sum Upgrade Helm dependency 2020-09-01 20:32:10 +02:00
main.go Use logger package from fluxcd/pkg 2020-08-21 12:10:01 +03:00

README.md

Source controller

e2e report license release

The source-controller is a Kubernetes operator, specialised in artifacts acquisition from external sources such as Git and Helm repositories. The source-controller implements the source.toolkit.fluxcd.io API and is a core component of the GitOps toolkit.

overview

Features:

  • authenticates to sources (SSH, user/password, API token)
  • validates source authenticity (PGP)
  • detects source changes based on update policies (semver)
  • fetches resources on-demand and on-a-schedule
  • packages the fetched resources into a well-known format (tar.gz, yaml)
  • makes the artifacts addressable by their source identifier (sha, version, ts)
  • makes the artifacts available in-cluster to interested 3rd parties
  • notifies interested 3rd parties of source changes and availability (status conditions, events, hooks)
  • reacts to Git push and Helm chart upload events (via notification-controller)