├── .github ├── dependabot.yaml └── workflows │ ├── release.yml │ ├── test.yaml │ ├── update.yaml │ └── vendor.yaml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── actions └── charts-syncer │ └── action.yml ├── charts ├── flux-instance │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── helmdocs.gotmpl │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── healthcheck.yaml │ │ ├── instance.yaml │ │ └── serviceaccount.yaml │ ├── values.schema.json │ └── values.yaml ├── flux-operator-mcp │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── helmdocs.gotmpl │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── admin-clusterrole.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── flowschema.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ ├── values.schema.json │ └── values.yaml └── flux-operator │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── helmdocs.gotmpl │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── admin-clusterrole.yaml │ ├── aggregate-clusterrole.yaml │ ├── crds.yaml │ ├── deployment.yaml │ ├── flowschema.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── servicemonitor.yaml │ ├── values.schema.json │ └── values.yaml ├── scripts ├── flux-operator.sh ├── lint.sh ├── manifests.sh ├── package.sh ├── push.sh └── sign.sh └── sync ├── external-dns.yaml ├── ingress-nginx.yaml └── metrics-server.yaml /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.github/workflows/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/.github/workflows/update.yaml -------------------------------------------------------------------------------- /.github/workflows/vendor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/.github/workflows/vendor.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/README.md -------------------------------------------------------------------------------- /actions/charts-syncer/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/actions/charts-syncer/action.yml -------------------------------------------------------------------------------- /charts/flux-instance/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-instance/.helmignore -------------------------------------------------------------------------------- /charts/flux-instance/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-instance/Chart.yaml -------------------------------------------------------------------------------- /charts/flux-instance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-instance/README.md -------------------------------------------------------------------------------- /charts/flux-instance/helmdocs.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-instance/helmdocs.gotmpl -------------------------------------------------------------------------------- /charts/flux-instance/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | Documentation at https://fluxcd.control-plane.io/operator/ 2 | -------------------------------------------------------------------------------- /charts/flux-instance/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-instance/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/flux-instance/templates/healthcheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-instance/templates/healthcheck.yaml -------------------------------------------------------------------------------- /charts/flux-instance/templates/instance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-instance/templates/instance.yaml -------------------------------------------------------------------------------- /charts/flux-instance/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-instance/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/flux-instance/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-instance/values.schema.json -------------------------------------------------------------------------------- /charts/flux-instance/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-instance/values.yaml -------------------------------------------------------------------------------- /charts/flux-operator-mcp/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator-mcp/.helmignore -------------------------------------------------------------------------------- /charts/flux-operator-mcp/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator-mcp/Chart.yaml -------------------------------------------------------------------------------- /charts/flux-operator-mcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator-mcp/README.md -------------------------------------------------------------------------------- /charts/flux-operator-mcp/helmdocs.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator-mcp/helmdocs.gotmpl -------------------------------------------------------------------------------- /charts/flux-operator-mcp/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | Documentation at https://fluxcd.control-plane.io/mcp/ 2 | -------------------------------------------------------------------------------- /charts/flux-operator-mcp/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator-mcp/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/flux-operator-mcp/templates/admin-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator-mcp/templates/admin-clusterrole.yaml -------------------------------------------------------------------------------- /charts/flux-operator-mcp/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator-mcp/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/flux-operator-mcp/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator-mcp/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/flux-operator-mcp/templates/flowschema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator-mcp/templates/flowschema.yaml -------------------------------------------------------------------------------- /charts/flux-operator-mcp/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator-mcp/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/flux-operator-mcp/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator-mcp/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/flux-operator-mcp/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator-mcp/templates/service.yaml -------------------------------------------------------------------------------- /charts/flux-operator-mcp/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator-mcp/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/flux-operator-mcp/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator-mcp/values.schema.json -------------------------------------------------------------------------------- /charts/flux-operator-mcp/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator-mcp/values.yaml -------------------------------------------------------------------------------- /charts/flux-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator/.helmignore -------------------------------------------------------------------------------- /charts/flux-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator/Chart.yaml -------------------------------------------------------------------------------- /charts/flux-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator/README.md -------------------------------------------------------------------------------- /charts/flux-operator/helmdocs.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator/helmdocs.gotmpl -------------------------------------------------------------------------------- /charts/flux-operator/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | Documentation at https://fluxcd.control-plane.io/operator/ 2 | -------------------------------------------------------------------------------- /charts/flux-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/flux-operator/templates/admin-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator/templates/admin-clusterrole.yaml -------------------------------------------------------------------------------- /charts/flux-operator/templates/aggregate-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator/templates/aggregate-clusterrole.yaml -------------------------------------------------------------------------------- /charts/flux-operator/templates/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator/templates/crds.yaml -------------------------------------------------------------------------------- /charts/flux-operator/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/flux-operator/templates/flowschema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator/templates/flowschema.yaml -------------------------------------------------------------------------------- /charts/flux-operator/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator/templates/service.yaml -------------------------------------------------------------------------------- /charts/flux-operator/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/flux-operator/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/flux-operator/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator/values.schema.json -------------------------------------------------------------------------------- /charts/flux-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/charts/flux-operator/values.yaml -------------------------------------------------------------------------------- /scripts/flux-operator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/scripts/flux-operator.sh -------------------------------------------------------------------------------- /scripts/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/scripts/lint.sh -------------------------------------------------------------------------------- /scripts/manifests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/scripts/manifests.sh -------------------------------------------------------------------------------- /scripts/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/scripts/package.sh -------------------------------------------------------------------------------- /scripts/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/scripts/push.sh -------------------------------------------------------------------------------- /scripts/sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/scripts/sign.sh -------------------------------------------------------------------------------- /sync/external-dns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/sync/external-dns.yaml -------------------------------------------------------------------------------- /sync/ingress-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/sync/ingress-nginx.yaml -------------------------------------------------------------------------------- /sync/metrics-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/controlplaneio-fluxcd/charts/HEAD/sync/metrics-server.yaml --------------------------------------------------------------------------------