The GitOps Toolkit source management component
Go to file
Hidde Beydals ac84c70a4c ci: pin Minio to v6.3.1
Due to corrupt v7.0.0 chart release.
2020-09-22 12:27:46 +02:00
.github/workflows ci: pin Minio to v6.3.1 2020-09-22 12:27:46 +02:00
api api: add HasRevision method to Artifact 2020-09-21 22:41:51 +02:00
config docs: document Bucket support HelmChart 2020-09-21 12:40:15 +02:00
controllers internal/helm: return callback on empty TLS config 2020-09-21 23:27:38 +02:00
docs docs: document Bucket support HelmChart 2020-09-21 12:40:15 +02:00
hack Generate API documentation 2020-06-19 16:45:05 +02:00
internal internal/helm: return callback on empty TLS config 2020-09-21 23:27:38 +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.17 2020-09-18 16:44:59 +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 Remove `find -execdir` from `Makefile` 2020-09-11 09:58:07 +02:00
PROJECT Add Bucket type to API 2020-09-18 16:11:24 +03:00
README.md Change CRD domain to 'source.toolkit.fluxcd.io' 2020-07-30 21:50:46 +02:00
go.mod Update Helm to v3.3.3 2020-09-21 10:53:16 +03:00
go.sum Update Helm to v3.3.3 2020-09-21 10:53:16 +03:00
main.go Implement S3 Bucket controller 2020-09-18 16:11:24 +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)