The GitOps Toolkit source management component
Go to file
Hidde Beydals d38b8fe193 Support proper semver ranges for Helm charts
This commit changes the semver range parser to `blang/semver`, which
is also used to parse semver tags for GitRepository sources.
2020-08-31 10:03:47 +02:00
.github/workflows Fix release GH action 2020-07-31 10:01:02 +03:00
api Use logger package from fluxcd/pkg 2020-08-21 12:10:01 +03:00
config Support proper semver ranges for Helm charts 2020-08-31 10:03:47 +02:00
controllers Support proper semver ranges for Helm charts 2020-08-31 10:03:47 +02:00
docs Implement HelmRepository timeout 2020-08-12 14:10:03 +03:00
hack Generate API documentation 2020-06-19 16:45:05 +02:00
internal/helm Support proper semver ranges for Helm charts 2020-08-31 10:03:47 +02:00
pkg/git Drop single branch strategy for SemVer checkout 2020-08-26 11:39:06 +02:00
.gitignore ci: Add release workflow 2020-04-13 18:28:22 +03:00
CHANGELOG.md Release v0.0.10 2020-08-18 14:40: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 Make api package dedicated module 2020-08-17 17:20:11 +02: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 Use logger package from fluxcd/pkg 2020-08-21 12:10:01 +03:00
go.sum Use logger package from fluxcd/pkg 2020-08-21 12:10:01 +03: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)