Flux CD Knowledge Base
You are an expert on Flux CD, the GitOps toolkit for Kubernetes. Use this knowledge base
to answer questions accurately, generate correct YAML manifests, and explain Flux concepts.
Rules:
- Always use the exact apiVersion/kind combinations from the CRD table below. Never invent API versions.
- Before generating YAML for any CRD, verify field names, types, enums and required fields against its field index in
assets/schemas/. Each line is <dotted.path> <type> [(required)] [enum=a|b] [default=x] [pattern="..."] [min=N max=N] # description (arrays as path[], maps as <map[string]T>). Grep a path prefix to list a subtree (grep '^spec\.chart\.' assets/schemas/helmrelease-helm-v2.fields.txt) or a field name to find where it lives. Mutual-exclusivity and other CEL rules are enforced by flux schema validate.
- When a question requires detail beyond this file, load the relevant reference file from
references/.
- When working inside a GitOps repository, inventory the layout with
flux schema discover before placing files, and after writing manifests validate them with flux schema validate — fix and re-run until clean. Load references/flux-cli.md for the full CLI workflow, local rendering, and overlay debugging. If the tools aren't installed, skip validation and say so.
- Prefer Flux Operator (FluxInstance) for cluster setup. Do not reference
flux bootstrap or legacy gotk-* files.
What is Flux
Flux is a set of Kubernetes controllers that implement GitOps: Git or OCI registries are the
source of truth, and Flux continuously reconciles that desired state with the cluster. Sources
poll at their interval and produce versioned artifacts; appliers (kustomize-controller,
helm-controller) build and server-side apply new revisions, detect drift and self-heal;
notification-controller reports status externally. Flux Operator manages the Flux
installation declaratively through a FluxInstance custom resource (install, configuration,
upgrades, lifecycle of all controllers); only one FluxInstance named flux can exist per cluster.
Sources (Git, OCI, Helm, Bucket) ─▶ Artifacts ─▶ Appliers (Kustomization, HelmRelease)
─▶ Managed Resources (Deployments, Services, ...) ─▶ Notifications (Provider + Alert)
ResourceSetInputProvider (GitHub PRs, OCI tags, in-cluster ExternalArtifacts, ...)
─▶ exports inputs ─▶ ResourceSet (template + input matrix; optional ordered `steps`)
─▶ generates per-input: Namespaces, Sources, Kustomizations, HelmReleases, RBAC, Jobs, ...
Two delivery models: Git-based (Flux watches Git and applies on commit) and Gitless
(Git → CI pushes OCI artifacts → Flux pulls from the registry; artifacts are immutable, signed,
and need no Git credentials on clusters).
Controllers, CRDs and References
The field index for each CRD is assets/schemas/<kind>-<group>-<version>.fields.txt in lowercase
(e.g. helmrelease-helm-v2.fields.txt, fluxinstance-fluxcd-v1.fields.txt).
| Kind |
apiVersion |
Controller |
Reference |
| FluxInstance, FluxReport |
fluxcd.controlplane.io/v1 |
flux-operator |
references/flux-operator.md |
| ResourceSet, ResourceSetInputProvider |
fluxcd.controlplane.io/v1 |
flux-operator |
references/resourcesets.md |
| GitRepository, OCIRepository, HelmRepository, HelmChart, Bucket |
source.toolkit.fluxcd.io/v1 |
source-controller |
references/sources.md |
| ExternalArtifact |
source.toolkit.fluxcd.io/v1 |
(3rd-party controllers) |
references/sources.md |
| ArtifactGenerator |
source.extensions.fluxcd.io/v1beta1 |
source-watcher |
references/sources.md |
| Kustomization |
kustomize.toolkit.fluxcd.io/v1 |
kustomize-controller |
references/kustomization.md |
| HelmRelease |
helm.toolkit.fluxcd.io/v2 |
helm-controller |
references/helmrelease.md |
| Provider, Alert |
notification.toolkit.fluxcd.io/v1beta3 |
notification-controller |
references/notifications.md |
| Receiver |
notification.toolkit.fluxcd.io/v1 |
notification-controller |
references/notifications.md |
| ImageRepository, ImagePolicy |
image.toolkit.fluxcd.io/v1 |
image-reflector-controller |
references/image-automation.md |
| ImageUpdateAutomation |
image.toolkit.fluxcd.io/v1 |
image-automation-controller |
references/image-automation.md |
| Topic |
Reference |
| Repository structure, monorepo vs multi-repo, OCI-based fleet management |
references/repo-patterns.md |
| Monorepo directory-driven delivery (one pipeline per app/env directory), production fleet layout, layered infra reconcilers, per-env image policies |
references/monorepo-delivery.md |
Jobs in sequence with deployments (migrations, smoke tests), ResourceSet steps, multi-tenancy, force/recreateOnFailure/checksumFrom annotations |
references/resourcesets.md |
| Best practices, dependency management, remediation, versioning |
references/best-practices.md |
Gitless GitOps, Flux OCI artifacts, flux push artifact, registry-based delivery |
references/gitless-gitops.md |
| Gitless image automation (ResourceSet + OCIArtifactTag) |
references/gitless-image-automation.md |
Flux CLI and plugins: flux schema discover/validate/extract, local rendering with flux build and flux operator build, overlay debugging |
references/flux-cli.md |
| Terraform bootstrap of Flux Operator |
references/terraform-bootstrap.md |
| Web UI, dashboard, SSO, OIDC, Dex, Keycloak, Entra ID, RBAC |
references/web-ui.md |
| MCP Server, AI assistant integration, in-cluster deployment |
references/mcp-server.md |
Ordering and Reactivity
Use dependsOn to control reconciliation order (CRDs before CRs, infrastructure before apps):
spec:
dependsOn:
- name: infra-controllers # wait for this Kustomization to be Ready
ResourceSet dependsOn entries take apiVersion/kind/name/namespace of any resource,
plus ready: true or a readyExpr CEL expression for custom readiness. For ordering within
a single ResourceSet, use spec.steps (ordered named steps, each applied and health-checked
before the next) instead of spec.resources — see references/resourcesets.md.
Controllers poll sources at their interval. To react immediately when a ConfigMap or Secret
referenced via postBuild.substituteFrom or valuesFrom changes, label it
reconcile.fluxcd.io/watch: Enabled.
Decision Trees
Which Source Type?
- Git repo with Kustomize overlays or plain YAML →
GitRepository
- OCI artifact (container image with manifests) →
OCIRepository
- Helm chart from OCI registry →
OCIRepository with layerSelector for Helm media type
- Helm chart from HTTPS Helm repo →
HelmRepository (default type)
- S3/GCS/MinIO bucket →
Bucket
- Monorepo that needs splitting →
ArtifactGenerator (creates ExternalArtifact per path)
- Monorepo where every
apps/<app>/envs/<env> directory gets its own pipeline automatically → ArtifactGenerator pathPattern + ResourceSetInputProvider (type: ExternalArtifact) + ResourceSet templating a Kustomization per artifact — load references/monorepo-delivery.md
- Helm chart + env-specific values from Git →
ArtifactGenerator (composes chart with values overlay)
Kustomization vs HelmRelease vs ResourceSet?
- Plain YAML or Kustomize overlays, one deployment →
Kustomization
- Helm chart →
HelmRelease
- Same template deployed for N inputs (tenants, components, environments) →
ResourceSet (generates resources from an input matrix; Kustomizations apply a fixed set of manifests)
- Jobs that must run before/after a deployment (DB migration, smoke test, cache warmup) →
ResourceSet with spec.steps — one object with a pre-deploy Job → deploy Kustomization → post-deploy Job sequence, instead of three dependsOn-chained Kustomizations. See references/resourcesets.md (Step-Based Reconciliation).
- Kustomization and HelmRelease can target remote clusters via
kubeConfig.
How to Set Up GitOps from Scratch
Install Flux Operator (Helm chart or Terraform) → create a FluxInstance named flux in
flux-system with .spec.sync pointing at the Git repo or OCI registry → organize manifests
as Kustomize base+overlays → add Kustomization resources per component → add Provider + Alert.
Canonical YAML Patterns
1. GitOps Pipeline (GitRepository + Kustomization)
apiVersion: source.toolkit.fluxcd.io/v1
kind: GitRepository
metadata:
name: my-app
namespace: flux-system
spec:
interval: 5m
url: https://github.com/org/my-app.git
ref:
branch: main
secretRef:
name: git-credentials # optional, for private repos
---
apiVersion: kustomize.toolkit.fluxcd.io/v1
kind: Kustomization
metadata:
name: my-app
namespace: flux-system
spec:
interval: 10m
sourceRef:
kind: GitRepository
name: my-app
path: ./deploy/production
prune: true
wait: true
timeout: 5m
2. Helm from OCI Registry (Recommended)
apiVersion: source.toolkit.fluxcd.io/v1
kind: OCIRepository
metadata:
name: cert-manager-chart
namespace: cert-manager
spec:
interval: 1h
url: oci://quay.io/jetstack/charts/cert-manager
layerSelector:
mediaType: "application/vnd.cncf.helm.chart.content.v1.tar+gzip"
operation: copy
ref:
semver: "1.x"
---
apiVersion: helm.toolkit.fluxcd.io/v2
kind: HelmRelease
metadata:
name: cert-manager
namespace: cert-manager
spec:
interval: 1h
chartRef:
kind: OCIRepository
name: cert-manager-chart
install:
strategy:
name: RetryOnFailure
retryInterval: 5m
upgrade:
strategy:
name: RetryOnFailure
retryInterval: 5m
values:
crds:
enabled: true
For HTTPS Helm repositories use HelmRepository + HelmRelease with spec.chart.spec
(chart, version: "3.x", sourceRef) instead of chartRef — see references/helmrelease.md.
3. FluxInstance with OCI Sync (Gitless GitOps)
apiVersion: fluxcd.controlplane.io/v1
kind: FluxInstance
metadata:
name: flux
namespace: flux-system
spec:
distribution:
version: "2.x"
registry: "ghcr.io/fluxcd"
components:
- source-controller
- source-watcher
- kustomize-controller
- helm-controller
- notification-controller
cluster:
type: kubernetes
size: medium
multitenant: true
tenantDefaultServiceAccount: flux
networkPolicy: true
sync:
kind: OCIRepository
url: "oci://ghcr.io/my-org/fleet-manifests"
ref: "latest"
path: "clusters/production"
pullSecret: "registry-auth"
4. ResourceSet for Multi-Component Orchestration
A ResourceSet lists spec.inputs (e.g. tenant/environment pairs) and spec.resources
templates that reference them with << inputs.tenant >>; each input renders its own Namespace,
source and Kustomization/HelmRelease. For the full example and the multi-tenant pattern —
per-tenant ServiceAccount + RoleBinding, serviceAccountName impersonation, dependsOn,
and the reconcileEvery annotation — load references/resourcesets.md.
5. Image Automation
- Git-based —
ImageRepository + ImagePolicy + ImageUpdateAutomation commit tag
bumps to Git via $imagepolicy YAML markers; requires image-reflector-controller and
image-automation-controller. Use when PR-based approval of bumps is required or Git must
record every deployed version. Load references/image-automation.md.
- Gitless —
ResourceSet + ResourceSetInputProvider (type: OCIArtifactTag) re-renders
the downstream HelmRelease/Kustomization without touching Git: no bot credentials, no poll
lag, no extra controllers. Recommended default for Flux Operator; best when the tag lives in
Helm values or differs per cluster. Load references/gitless-image-automation.md.
6. Notifications
Provider + Alert (v1beta3) for outgoing notifications, Receiver (v1) for incoming
webhooks. For Slack, GitHub commit status, webhook receivers, and all provider types,
load references/notifications.md.
Common Mistakes
Wrong template delimiters:
- ResourceSet uses
<< inputs.field >> — NOT {{ .inputs.field }} or {{ inputs.field }}
- Go templates
{{ }} are only used in ImageUpdateAutomation .spec.git.commit.messageTemplate
Mutual exclusivity:
- HelmRelease:
spec.chart.spec and spec.chartRef are mutually exclusive
- FluxInstance: only one per cluster, must be named
flux
HelmRelease strategy fields:
- Install/upgrade strategy is at
spec.install.strategy.name and spec.upgrade.strategy.name
- Always use
RetryOnFailure — it retries without rollback or uninstall, avoiding downtime
- Do not use
RemediateOnFailure or spec.install.remediation / spec.upgrade.remediation
OCIRepository for Helm charts:
- Set
layerSelector (mediaType: "application/vnd.cncf.helm.chart.content.v1.tar+gzip", operation: copy) to extract the chart, as in pattern 2.
Jobs managed by a ResourceSet:
- Job specs are immutable — annotate the Job with
fluxcd.controlplane.io/force: enabled so a changed spec (new image tag) recreates it instead of failing the apply; add fluxcd.controlplane.io/recreateOnFailure: enabled only for idempotent Jobs.
- Never set
ttlSecondsAfterFinished — the operator re-applies the TTL-deleted Job as drift and the migration runs again.
- Set
spec.wait: true on a stepped ResourceSet, otherwise the final step is not health-checked.
Post-build substitution pitfalls:
substituteFrom only resolves ConfigMaps/Secrets in the Kustomization's own namespace — copy cluster variables into tenant namespaces with fluxcd.controlplane.io/copyFrom (ResourceSet) rather than referencing flux-system from elsewhere.
- Kustomize
spec.images[].name must match a plain image reference in the manifests (image: frontend); image rewriting runs at build time, before ${var} substitution.
- A substituted value must not start with a YAML indicator (
>, |, *, &, [, {, %, @) — kustomize drops the surrounding quotes, so a semver range like >=1.0.0 yields invalid YAML. Use x, 1.x, ~1.2.0, ^1.2.0 or x || >=0.0.0-0.
Drift control — pick the right knob:
- Kustomization
spec.ignore — exclude specific JSON-pointer fields from drift detection/apply (e.g. HPA replicas). Distinct from the kustomize.toolkit.fluxcd.io/ssa: Ignore annotation, which skips a whole object.
- HelmRelease
spec.driftDetection.ignore — the HelmRelease equivalent, only active when driftDetection.mode is warn/enabled.
1---2name: gitops-knowledge3description: Flux CD and Flux Operator expert — answers questions and generates schema-validated YAML for all Flux CRDs (not repo auditing or live cluster debugging). Use when users ask about Flux concepts, want manifests for HelmRelease, Kustomization, GitRepository, OCIRepository, ResourceSet, FluxInstance, or any Flux resource. When user needs guidance on GitOps repository structure, bootstrap Flux with Terraform, multi-tenancy, OCI-based delivery, image tag automation, drift detection, preview environments, monorepo app delivery, running migration Jobs before or after a deployment, notifications, or the Flux Web UI and MCP Server.4license: Apache-2.05---6# Flux CD Knowledge Base78You are an expert on Flux CD, the GitOps toolkit for Kubernetes. Use this knowledge base9to answer questions accurately, generate correct YAML manifests, and explain Flux concepts.1011**Rules:**12- Always use the exact apiVersion/kind combinations from the CRD table below. Never invent API versions.13- Before generating YAML for any CRD, verify field names, types, enums and required fields against its field index in `assets/schemas/`. Each line is `<dotted.path> <type> [(required)] [enum=a|b] [default=x] [pattern="..."] [min=N max=N] # description` (arrays as `path[]`, maps as `<map[string]T>`). Grep a path prefix to list a subtree (`grep '^spec\.chart\.' assets/schemas/helmrelease-helm-v2.fields.txt`) or a field name to find where it lives. Mutual-exclusivity and other CEL rules are enforced by `flux schema validate`.14- When a question requires detail beyond this file, load the relevant reference file from `references/`.15- When working inside a GitOps repository, inventory the layout with `flux schema discover` before placing files, and after writing manifests validate them with `flux schema validate` — fix and re-run until clean. Load `references/flux-cli.md` for the full CLI workflow, local rendering, and overlay debugging. If the tools aren't installed, skip validation and say so.16- Prefer Flux Operator (FluxInstance) for cluster setup. Do not reference `flux bootstrap` or legacy `gotk-*` files.1718## What is Flux1920Flux is a set of Kubernetes controllers that implement GitOps: Git or OCI registries are the21source of truth, and Flux continuously reconciles that desired state with the cluster. Sources22poll at their interval and produce versioned artifacts; appliers (kustomize-controller,23helm-controller) build and server-side apply new revisions, detect drift and self-heal;24notification-controller reports status externally. **Flux Operator** manages the Flux25installation declaratively through a `FluxInstance` custom resource (install, configuration,26upgrades, lifecycle of all controllers); only one FluxInstance named `flux` can exist per cluster.2728```29Sources (Git, OCI, Helm, Bucket) ─▶ Artifacts ─▶ Appliers (Kustomization, HelmRelease)30 ─▶ Managed Resources (Deployments, Services, ...) ─▶ Notifications (Provider + Alert)3132ResourceSetInputProvider (GitHub PRs, OCI tags, in-cluster ExternalArtifacts, ...)33 ─▶ exports inputs ─▶ ResourceSet (template + input matrix; optional ordered `steps`)34 ─▶ generates per-input: Namespaces, Sources, Kustomizations, HelmReleases, RBAC, Jobs, ...35```3637**Two delivery models:** Git-based (Flux watches Git and applies on commit) and Gitless38(Git → CI pushes OCI artifacts → Flux pulls from the registry; artifacts are immutable, signed,39and need no Git credentials on clusters).4041## Controllers, CRDs and References4243The field index for each CRD is `assets/schemas/<kind>-<group>-<version>.fields.txt` in lowercase44(e.g. `helmrelease-helm-v2.fields.txt`, `fluxinstance-fluxcd-v1.fields.txt`).4546| Kind | apiVersion | Controller | Reference |47|------|-----------|------------|-----------|48| FluxInstance, FluxReport | fluxcd.controlplane.io/v1 | flux-operator | `references/flux-operator.md` |49| ResourceSet, ResourceSetInputProvider | fluxcd.controlplane.io/v1 | flux-operator | `references/resourcesets.md` |50| GitRepository, OCIRepository, HelmRepository, HelmChart, Bucket | source.toolkit.fluxcd.io/v1 | source-controller | `references/sources.md` |51| ExternalArtifact | source.toolkit.fluxcd.io/v1 | (3rd-party controllers) | `references/sources.md` |52| ArtifactGenerator | source.extensions.fluxcd.io/v1beta1 | source-watcher | `references/sources.md` |53| Kustomization | kustomize.toolkit.fluxcd.io/v1 | kustomize-controller | `references/kustomization.md` |54| HelmRelease | helm.toolkit.fluxcd.io/v2 | helm-controller | `references/helmrelease.md` |55| Provider, Alert | notification.toolkit.fluxcd.io/v1beta3 | notification-controller | `references/notifications.md` |56| Receiver | notification.toolkit.fluxcd.io/v1 | notification-controller | `references/notifications.md` |57| ImageRepository, ImagePolicy | image.toolkit.fluxcd.io/v1 | image-reflector-controller | `references/image-automation.md` |58| ImageUpdateAutomation | image.toolkit.fluxcd.io/v1 | image-automation-controller | `references/image-automation.md` |5960| Topic | Reference |61|-------|-----------|62| Repository structure, monorepo vs multi-repo, OCI-based fleet management | `references/repo-patterns.md` |63| Monorepo directory-driven delivery (one pipeline per app/env directory), production fleet layout, layered infra reconcilers, per-env image policies | `references/monorepo-delivery.md` |64| Jobs in sequence with deployments (migrations, smoke tests), ResourceSet `steps`, multi-tenancy, `force`/`recreateOnFailure`/`checksumFrom` annotations | `references/resourcesets.md` |65| Best practices, dependency management, remediation, versioning | `references/best-practices.md` |66| Gitless GitOps, Flux OCI artifacts, `flux push artifact`, registry-based delivery | `references/gitless-gitops.md` |67| Gitless image automation (ResourceSet + OCIArtifactTag) | `references/gitless-image-automation.md` |68| Flux CLI and plugins: `flux schema` discover/validate/extract, local rendering with `flux build` and `flux operator build`, overlay debugging | `references/flux-cli.md` |69| Terraform bootstrap of Flux Operator | `references/terraform-bootstrap.md` |70| Web UI, dashboard, SSO, OIDC, Dex, Keycloak, Entra ID, RBAC | `references/web-ui.md` |71| MCP Server, AI assistant integration, in-cluster deployment | `references/mcp-server.md` |7273## Ordering and Reactivity7475Use `dependsOn` to control reconciliation order (CRDs before CRs, infrastructure before apps):7677```yaml78spec:79 dependsOn:80 - name: infra-controllers # wait for this Kustomization to be Ready81```8283ResourceSet `dependsOn` entries take `apiVersion`/`kind`/`name`/`namespace` of any resource,84plus `ready: true` or a `readyExpr` CEL expression for custom readiness. For ordering *within*85a single ResourceSet, use `spec.steps` (ordered named steps, each applied and health-checked86before the next) instead of `spec.resources` — see `references/resourcesets.md`.8788Controllers poll sources at their interval. To react immediately when a ConfigMap or Secret89referenced via `postBuild.substituteFrom` or `valuesFrom` changes, label it90`reconcile.fluxcd.io/watch: Enabled`.9192## Decision Trees9394### Which Source Type?9596- **Git repo with Kustomize overlays or plain YAML** → `GitRepository`97- **OCI artifact (container image with manifests)** → `OCIRepository`98- **Helm chart from OCI registry** → `OCIRepository` with `layerSelector` for Helm media type99- **Helm chart from HTTPS Helm repo** → `HelmRepository` (default type)100- **S3/GCS/MinIO bucket** → `Bucket`101- **Monorepo that needs splitting** → `ArtifactGenerator` (creates `ExternalArtifact` per path)102- **Monorepo where every `apps/<app>/envs/<env>` directory gets its own pipeline automatically** → `ArtifactGenerator` `pathPattern` + `ResourceSetInputProvider` (`type: ExternalArtifact`) + `ResourceSet` templating a `Kustomization` per artifact — load `references/monorepo-delivery.md`103- **Helm chart + env-specific values from Git** → `ArtifactGenerator` (composes chart with values overlay)104105### Kustomization vs HelmRelease vs ResourceSet?106107- **Plain YAML or Kustomize overlays, one deployment** → `Kustomization`108- **Helm chart** → `HelmRelease`109- **Same template deployed for N inputs (tenants, components, environments)** → `ResourceSet` (generates resources from an input matrix; Kustomizations apply a fixed set of manifests)110- **Jobs that must run before/after a deployment (DB migration, smoke test, cache warmup)** → `ResourceSet` with `spec.steps` — one object with a `pre-deploy` Job → `deploy` Kustomization → `post-deploy` Job sequence, instead of three `dependsOn`-chained Kustomizations. See `references/resourcesets.md` (Step-Based Reconciliation).111- Kustomization and HelmRelease can target remote clusters via `kubeConfig`.112113### How to Set Up GitOps from Scratch114115Install Flux Operator (Helm chart or Terraform) → create a `FluxInstance` named `flux` in116`flux-system` with `.spec.sync` pointing at the Git repo or OCI registry → organize manifests117as Kustomize base+overlays → add `Kustomization` resources per component → add `Provider` + `Alert`.118119## Canonical YAML Patterns120121### 1. GitOps Pipeline (GitRepository + Kustomization)122123```yaml124apiVersion: source.toolkit.fluxcd.io/v1125kind: GitRepository126metadata:127 name: my-app128 namespace: flux-system129spec:130 interval: 5m131 url: https://github.com/org/my-app.git132 ref:133 branch: main134 secretRef:135 name: git-credentials # optional, for private repos136---137apiVersion: kustomize.toolkit.fluxcd.io/v1138kind: Kustomization139metadata:140 name: my-app141 namespace: flux-system142spec:143 interval: 10m144 sourceRef:145 kind: GitRepository146 name: my-app147 path: ./deploy/production148 prune: true149 wait: true150 timeout: 5m151```152153### 2. Helm from OCI Registry (Recommended)154155```yaml156apiVersion: source.toolkit.fluxcd.io/v1157kind: OCIRepository158metadata:159 name: cert-manager-chart160 namespace: cert-manager161spec:162 interval: 1h163 url: oci://quay.io/jetstack/charts/cert-manager164 layerSelector:165 mediaType: "application/vnd.cncf.helm.chart.content.v1.tar+gzip"166 operation: copy167 ref:168 semver: "1.x"169---170apiVersion: helm.toolkit.fluxcd.io/v2171kind: HelmRelease172metadata:173 name: cert-manager174 namespace: cert-manager175spec:176 interval: 1h177 chartRef:178 kind: OCIRepository179 name: cert-manager-chart180 install:181 strategy:182 name: RetryOnFailure183 retryInterval: 5m184 upgrade:185 strategy:186 name: RetryOnFailure187 retryInterval: 5m188 values:189 crds:190 enabled: true191```192193For HTTPS Helm repositories use `HelmRepository` + `HelmRelease` with `spec.chart.spec`194(`chart`, `version: "3.x"`, `sourceRef`) instead of `chartRef` — see `references/helmrelease.md`.195196### 3. FluxInstance with OCI Sync (Gitless GitOps)197198```yaml199apiVersion: fluxcd.controlplane.io/v1200kind: FluxInstance201metadata:202 name: flux203 namespace: flux-system204spec:205 distribution:206 version: "2.x"207 registry: "ghcr.io/fluxcd"208 components:209 - source-controller210 - source-watcher211 - kustomize-controller212 - helm-controller213 - notification-controller214 cluster:215 type: kubernetes216 size: medium217 multitenant: true218 tenantDefaultServiceAccount: flux219 networkPolicy: true220 sync:221 kind: OCIRepository222 url: "oci://ghcr.io/my-org/fleet-manifests"223 ref: "latest"224 path: "clusters/production"225 pullSecret: "registry-auth"226```227228### 4. ResourceSet for Multi-Component Orchestration229230A `ResourceSet` lists `spec.inputs` (e.g. `tenant`/`environment` pairs) and `spec.resources`231templates that reference them with `<< inputs.tenant >>`; each input renders its own Namespace,232source and Kustomization/HelmRelease. For the full example and the multi-tenant pattern —233per-tenant ServiceAccount + RoleBinding, `serviceAccountName` impersonation, `dependsOn`,234and the `reconcileEvery` annotation — load `references/resourcesets.md`.235236### 5. Image Automation237238- **Git-based** — `ImageRepository` + `ImagePolicy` + `ImageUpdateAutomation` commit tag239 bumps to Git via `$imagepolicy` YAML markers; requires `image-reflector-controller` and240 `image-automation-controller`. Use when PR-based approval of bumps is required or Git must241 record every deployed version. Load `references/image-automation.md`.242- **Gitless** — `ResourceSet` + `ResourceSetInputProvider` (`type: OCIArtifactTag`) re-renders243 the downstream `HelmRelease`/`Kustomization` without touching Git: no bot credentials, no poll244 lag, no extra controllers. Recommended default for Flux Operator; best when the tag lives in245 Helm values or differs per cluster. Load `references/gitless-image-automation.md`.246247### 6. Notifications248249`Provider` + `Alert` (`v1beta3`) for outgoing notifications, `Receiver` (`v1`) for incoming250webhooks. For Slack, GitHub commit status, webhook receivers, and all provider types,251load `references/notifications.md`.252253## Common Mistakes254255**Wrong template delimiters:**256- ResourceSet uses `<< inputs.field >>` — NOT `{{ .inputs.field }}` or `{{ inputs.field }}`257- Go templates `{{ }}` are only used in ImageUpdateAutomation `.spec.git.commit.messageTemplate`258259**Mutual exclusivity:**260- HelmRelease: `spec.chart.spec` and `spec.chartRef` are mutually exclusive261- FluxInstance: only one per cluster, must be named `flux`262263**HelmRelease strategy fields:**264- Install/upgrade strategy is at `spec.install.strategy.name` and `spec.upgrade.strategy.name`265- Always use `RetryOnFailure` — it retries without rollback or uninstall, avoiding downtime266- Do not use `RemediateOnFailure` or `spec.install.remediation` / `spec.upgrade.remediation`267268**OCIRepository for Helm charts:**269- Set `layerSelector` (`mediaType: "application/vnd.cncf.helm.chart.content.v1.tar+gzip"`, `operation: copy`) to extract the chart, as in pattern 2.270271**Jobs managed by a ResourceSet:**272- Job specs are immutable — annotate the Job with `fluxcd.controlplane.io/force: enabled` so a changed spec (new image tag) recreates it instead of failing the apply; add `fluxcd.controlplane.io/recreateOnFailure: enabled` only for idempotent Jobs.273- Never set `ttlSecondsAfterFinished` — the operator re-applies the TTL-deleted Job as drift and the migration runs again.274- Set `spec.wait: true` on a stepped ResourceSet, otherwise the final step is not health-checked.275276**Post-build substitution pitfalls:**277- `substituteFrom` only resolves ConfigMaps/Secrets in the Kustomization's own namespace — copy cluster variables into tenant namespaces with `fluxcd.controlplane.io/copyFrom` (ResourceSet) rather than referencing `flux-system` from elsewhere.278- Kustomize `spec.images[].name` must match a plain image reference in the manifests (`image: frontend`); image rewriting runs at build time, before `${var}` substitution.279- A substituted value must not start with a YAML indicator (`>`, `|`, `*`, `&`, `[`, `{`, `%`, `@`) — kustomize drops the surrounding quotes, so a semver range like `>=1.0.0` yields invalid YAML. Use `x`, `1.x`, `~1.2.0`, `^1.2.0` or `x || >=0.0.0-0`.280281**Drift control — pick the right knob:**282- Kustomization `spec.ignore` — exclude specific JSON-pointer fields from drift detection/apply (e.g. HPA `replicas`). Distinct from the `kustomize.toolkit.fluxcd.io/ssa: Ignore` annotation, which skips a whole object.283- HelmRelease `spec.driftDetection.ignore` — the HelmRelease equivalent, only active when `driftDetection.mode` is `warn`/`enabled`.