├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── codespell.yaml │ ├── e2e-sync.yaml │ ├── lint-test.yaml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── _readme_templates.gotmpl ├── charts ├── flux2-multi-tenancy │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ └── kyverno-policy.yaml │ ├── tests │ │ ├── __snapshot__ │ │ │ └── kyverno-policy_test.yaml.snap │ │ └── kyverno-policy_test.yaml │ └── values.yaml ├── flux2-notification │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── alert.yaml │ │ ├── provider.yaml │ │ └── secret.yaml │ ├── tests │ │ ├── __snapshot__ │ │ │ ├── alert_test.yaml.snap │ │ │ ├── provider_test.yaml.snap │ │ │ └── secret_test.yaml.snap │ │ ├── alert_test.yaml │ │ ├── provider_test.yaml │ │ └── secret_test.yaml │ └── values.yaml ├── flux2-sync │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── flux-gitrepository.yaml │ │ ├── flux-kustomization.yaml │ │ ├── generate-git-secret-service-account.yaml │ │ ├── generate-git-secret.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ └── secret.yaml │ ├── tests │ │ ├── __snapshot__ │ │ │ ├── flux-gitrepository_test.yaml.snap │ │ │ ├── flux-kustomization_test.yaml.snap │ │ │ └── secret_test.yaml.snap │ │ ├── flux-gitrepository_test.yaml │ │ ├── flux-kustomization_test.yaml │ │ └── secret_test.yaml │ └── values.yaml └── flux2 │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ ├── _helper.tpl │ ├── aggregate-clusterroles.yaml │ ├── cluster-reconciler-clusterrolebinding.yaml │ ├── cluster-reconciler-impersonator-clusterrole.yaml │ ├── cluster-reconciler-impersonator-clusterrolebinding.yaml │ ├── crd-controller-clusterrole.yaml │ ├── crd-controller-clusterrolebinding.yaml │ ├── extra-manifests.yaml │ ├── helm-controller-sa.yaml │ ├── helm-controller.crds.yaml │ ├── helm-controller.yaml │ ├── image-automation-controller-sa.yaml │ ├── image-automation-controller.crds.yaml │ ├── image-automation-controller.yaml │ ├── image-reflector-controller-sa.yaml │ ├── image-reflector-controller.crds.yaml │ ├── image-reflector-controller.yaml │ ├── kustomize-controller-sa.yaml │ ├── kustomize-controller-secret.yaml │ ├── kustomize-controller.crds.yaml │ ├── kustomize-controller.yaml │ ├── notification-controller-ingress.yaml │ ├── notification-controller-sa.yaml │ ├── notification-controller-service.yaml │ ├── notification-controller-webhook-service.yaml │ ├── notification-controller.crds.yaml │ ├── notification-controller.yaml │ ├── openshift.yaml │ ├── podmonitor.yaml │ ├── policies.yaml │ ├── pre-install-job-serviceaccount.yaml │ ├── pre-install-job.yaml │ ├── source-controller-service.yaml │ ├── source-controller-serviceaccount.yaml │ ├── source-controller.crds.yaml │ ├── source-controller.yaml │ ├── source-watcher-service.yaml │ ├── source-watcher-serviceaccount.yaml │ ├── source-watcher.crds.yaml │ └── source-watcher.yaml │ ├── tests │ ├── __snapshot__ │ │ ├── helm-controller_test.yaml.snap │ │ ├── image-automation-controller_test.yaml.snap │ │ ├── image-reflector-controller_test.yaml.snap │ │ ├── kustomize-controller-secret_test.yaml.snap │ │ ├── kustomize-controller_test.yaml.snap │ │ ├── notification-controller_test.yaml.snap │ │ ├── pre-install-job_test.yaml.snap │ │ ├── source-controller_test.yaml.snap │ │ └── source-watcher.yaml.snap │ ├── cluster-reconciler-clusterrolebinding_test.yaml │ ├── cluster-reconciler-impersonator-clusterrole_test.yaml │ ├── cluster-reconciler-impersonator-clusterrolebinding.yaml │ ├── extra-manifests_test.yaml │ ├── helm-controller_test.yaml │ ├── image-automation-controller_test.yaml │ ├── image-reflector-controller_test.yaml │ ├── kustomize-controller-secret_test.yaml │ ├── kustomize-controller_test.yaml │ ├── notification-controller_test.yaml │ ├── pre-install-job_test.yaml │ ├── source-controller_test.yaml │ └── source-watcher.yaml │ └── values.yaml ├── ct.yaml └── hack └── generate.sh /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/codespell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/.github/workflows/codespell.yaml -------------------------------------------------------------------------------- /.github/workflows/e2e-sync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/.github/workflows/e2e-sync.yaml -------------------------------------------------------------------------------- /.github/workflows/lint-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/.github/workflows/lint-test.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/README.md -------------------------------------------------------------------------------- /_readme_templates.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/_readme_templates.gotmpl -------------------------------------------------------------------------------- /charts/flux2-multi-tenancy/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-multi-tenancy/.helmignore -------------------------------------------------------------------------------- /charts/flux2-multi-tenancy/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-multi-tenancy/Chart.yaml -------------------------------------------------------------------------------- /charts/flux2-multi-tenancy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-multi-tenancy/README.md -------------------------------------------------------------------------------- /charts/flux2-multi-tenancy/templates/kyverno-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-multi-tenancy/templates/kyverno-policy.yaml -------------------------------------------------------------------------------- /charts/flux2-multi-tenancy/tests/__snapshot__/kyverno-policy_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-multi-tenancy/tests/__snapshot__/kyverno-policy_test.yaml.snap -------------------------------------------------------------------------------- /charts/flux2-multi-tenancy/tests/kyverno-policy_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-multi-tenancy/tests/kyverno-policy_test.yaml -------------------------------------------------------------------------------- /charts/flux2-multi-tenancy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-multi-tenancy/values.yaml -------------------------------------------------------------------------------- /charts/flux2-notification/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-notification/.helmignore -------------------------------------------------------------------------------- /charts/flux2-notification/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-notification/Chart.yaml -------------------------------------------------------------------------------- /charts/flux2-notification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-notification/README.md -------------------------------------------------------------------------------- /charts/flux2-notification/templates/alert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-notification/templates/alert.yaml -------------------------------------------------------------------------------- /charts/flux2-notification/templates/provider.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-notification/templates/provider.yaml -------------------------------------------------------------------------------- /charts/flux2-notification/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-notification/templates/secret.yaml -------------------------------------------------------------------------------- /charts/flux2-notification/tests/__snapshot__/alert_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-notification/tests/__snapshot__/alert_test.yaml.snap -------------------------------------------------------------------------------- /charts/flux2-notification/tests/__snapshot__/provider_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-notification/tests/__snapshot__/provider_test.yaml.snap -------------------------------------------------------------------------------- /charts/flux2-notification/tests/__snapshot__/secret_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-notification/tests/__snapshot__/secret_test.yaml.snap -------------------------------------------------------------------------------- /charts/flux2-notification/tests/alert_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-notification/tests/alert_test.yaml -------------------------------------------------------------------------------- /charts/flux2-notification/tests/provider_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-notification/tests/provider_test.yaml -------------------------------------------------------------------------------- /charts/flux2-notification/tests/secret_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-notification/tests/secret_test.yaml -------------------------------------------------------------------------------- /charts/flux2-notification/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-notification/values.yaml -------------------------------------------------------------------------------- /charts/flux2-sync/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-sync/.helmignore -------------------------------------------------------------------------------- /charts/flux2-sync/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-sync/Chart.yaml -------------------------------------------------------------------------------- /charts/flux2-sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-sync/README.md -------------------------------------------------------------------------------- /charts/flux2-sync/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-sync/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/flux2-sync/templates/flux-gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-sync/templates/flux-gitrepository.yaml -------------------------------------------------------------------------------- /charts/flux2-sync/templates/flux-kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-sync/templates/flux-kustomization.yaml -------------------------------------------------------------------------------- /charts/flux2-sync/templates/generate-git-secret-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-sync/templates/generate-git-secret-service-account.yaml -------------------------------------------------------------------------------- /charts/flux2-sync/templates/generate-git-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-sync/templates/generate-git-secret.yaml -------------------------------------------------------------------------------- /charts/flux2-sync/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-sync/templates/role.yaml -------------------------------------------------------------------------------- /charts/flux2-sync/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-sync/templates/rolebinding.yaml -------------------------------------------------------------------------------- /charts/flux2-sync/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-sync/templates/secret.yaml -------------------------------------------------------------------------------- /charts/flux2-sync/tests/__snapshot__/flux-gitrepository_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-sync/tests/__snapshot__/flux-gitrepository_test.yaml.snap -------------------------------------------------------------------------------- /charts/flux2-sync/tests/__snapshot__/flux-kustomization_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-sync/tests/__snapshot__/flux-kustomization_test.yaml.snap -------------------------------------------------------------------------------- /charts/flux2-sync/tests/__snapshot__/secret_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-sync/tests/__snapshot__/secret_test.yaml.snap -------------------------------------------------------------------------------- /charts/flux2-sync/tests/flux-gitrepository_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-sync/tests/flux-gitrepository_test.yaml -------------------------------------------------------------------------------- /charts/flux2-sync/tests/flux-kustomization_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-sync/tests/flux-kustomization_test.yaml -------------------------------------------------------------------------------- /charts/flux2-sync/tests/secret_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-sync/tests/secret_test.yaml -------------------------------------------------------------------------------- /charts/flux2-sync/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2-sync/values.yaml -------------------------------------------------------------------------------- /charts/flux2/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/.helmignore -------------------------------------------------------------------------------- /charts/flux2/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/Chart.yaml -------------------------------------------------------------------------------- /charts/flux2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/README.md -------------------------------------------------------------------------------- /charts/flux2/templates/_helper.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/_helper.tpl -------------------------------------------------------------------------------- /charts/flux2/templates/aggregate-clusterroles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/aggregate-clusterroles.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/cluster-reconciler-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/cluster-reconciler-clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/cluster-reconciler-impersonator-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/cluster-reconciler-impersonator-clusterrole.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/cluster-reconciler-impersonator-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/cluster-reconciler-impersonator-clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/crd-controller-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/crd-controller-clusterrole.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/crd-controller-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/crd-controller-clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/extra-manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/extra-manifests.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/helm-controller-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/helm-controller-sa.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/helm-controller.crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/helm-controller.crds.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/helm-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/helm-controller.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/image-automation-controller-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/image-automation-controller-sa.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/image-automation-controller.crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/image-automation-controller.crds.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/image-automation-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/image-automation-controller.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/image-reflector-controller-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/image-reflector-controller-sa.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/image-reflector-controller.crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/image-reflector-controller.crds.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/image-reflector-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/image-reflector-controller.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/kustomize-controller-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/kustomize-controller-sa.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/kustomize-controller-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/kustomize-controller-secret.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/kustomize-controller.crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/kustomize-controller.crds.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/kustomize-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/kustomize-controller.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/notification-controller-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/notification-controller-ingress.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/notification-controller-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/notification-controller-sa.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/notification-controller-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/notification-controller-service.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/notification-controller-webhook-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/notification-controller-webhook-service.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/notification-controller.crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/notification-controller.crds.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/notification-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/notification-controller.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/openshift.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/openshift.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/podmonitor.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/policies.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/pre-install-job-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/pre-install-job-serviceaccount.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/pre-install-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/pre-install-job.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/source-controller-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/source-controller-service.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/source-controller-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/source-controller-serviceaccount.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/source-controller.crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/source-controller.crds.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/source-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/source-controller.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/source-watcher-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/source-watcher-service.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/source-watcher-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/source-watcher-serviceaccount.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/source-watcher.crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/source-watcher.crds.yaml -------------------------------------------------------------------------------- /charts/flux2/templates/source-watcher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/templates/source-watcher.yaml -------------------------------------------------------------------------------- /charts/flux2/tests/__snapshot__/helm-controller_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/tests/__snapshot__/helm-controller_test.yaml.snap -------------------------------------------------------------------------------- /charts/flux2/tests/__snapshot__/image-automation-controller_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/tests/__snapshot__/image-automation-controller_test.yaml.snap -------------------------------------------------------------------------------- /charts/flux2/tests/__snapshot__/image-reflector-controller_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/tests/__snapshot__/image-reflector-controller_test.yaml.snap -------------------------------------------------------------------------------- /charts/flux2/tests/__snapshot__/kustomize-controller-secret_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/tests/__snapshot__/kustomize-controller-secret_test.yaml.snap -------------------------------------------------------------------------------- /charts/flux2/tests/__snapshot__/kustomize-controller_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/tests/__snapshot__/kustomize-controller_test.yaml.snap -------------------------------------------------------------------------------- /charts/flux2/tests/__snapshot__/notification-controller_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/tests/__snapshot__/notification-controller_test.yaml.snap -------------------------------------------------------------------------------- /charts/flux2/tests/__snapshot__/pre-install-job_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/tests/__snapshot__/pre-install-job_test.yaml.snap -------------------------------------------------------------------------------- /charts/flux2/tests/__snapshot__/source-controller_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/tests/__snapshot__/source-controller_test.yaml.snap -------------------------------------------------------------------------------- /charts/flux2/tests/__snapshot__/source-watcher.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/tests/__snapshot__/source-watcher.yaml.snap -------------------------------------------------------------------------------- /charts/flux2/tests/cluster-reconciler-clusterrolebinding_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/tests/cluster-reconciler-clusterrolebinding_test.yaml -------------------------------------------------------------------------------- /charts/flux2/tests/cluster-reconciler-impersonator-clusterrole_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/tests/cluster-reconciler-impersonator-clusterrole_test.yaml -------------------------------------------------------------------------------- /charts/flux2/tests/cluster-reconciler-impersonator-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/tests/cluster-reconciler-impersonator-clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/flux2/tests/extra-manifests_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/tests/extra-manifests_test.yaml -------------------------------------------------------------------------------- /charts/flux2/tests/helm-controller_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/tests/helm-controller_test.yaml -------------------------------------------------------------------------------- /charts/flux2/tests/image-automation-controller_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/tests/image-automation-controller_test.yaml -------------------------------------------------------------------------------- /charts/flux2/tests/image-reflector-controller_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/tests/image-reflector-controller_test.yaml -------------------------------------------------------------------------------- /charts/flux2/tests/kustomize-controller-secret_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/tests/kustomize-controller-secret_test.yaml -------------------------------------------------------------------------------- /charts/flux2/tests/kustomize-controller_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/tests/kustomize-controller_test.yaml -------------------------------------------------------------------------------- /charts/flux2/tests/notification-controller_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/tests/notification-controller_test.yaml -------------------------------------------------------------------------------- /charts/flux2/tests/pre-install-job_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/tests/pre-install-job_test.yaml -------------------------------------------------------------------------------- /charts/flux2/tests/source-controller_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/tests/source-controller_test.yaml -------------------------------------------------------------------------------- /charts/flux2/tests/source-watcher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/tests/source-watcher.yaml -------------------------------------------------------------------------------- /charts/flux2/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/charts/flux2/values.yaml -------------------------------------------------------------------------------- /ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/ct.yaml -------------------------------------------------------------------------------- /hack/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd-community/helm-charts/HEAD/hack/generate.sh --------------------------------------------------------------------------------