Note
This repository is part of the reference architecture for the ControlPlane Enterprise for Flux CD.
The d2
reference architecture comprised of
d2-fleet,
d2-infra and
d2-apps
is a set of best practices and production-ready examples for using Flux Operator
and OCI Artifacts to manage the continuous delivery of Kubernetes infrastructure and
applications on multi-cluster multi-tenant environments.
Download the guide: Flux D2 Architectural Reference
This repository is managed by the dev teams who are responsible for the delivery of applications to the Kubernetes cluster fleet.
This repository is used to define the application components such as:
- Flux HelmRepositories (pointing to the application Helm charts in container registries)
- Flux HelmReleases for the applications with custom configuration per environment
This repository is reconciled on the cluster fleet by Flux as the namespace admin and can't contain Kubernetes cluster-wide definitions such as CRDs, Cluster Roles, Namespaces, etc.
The platform team that manages the d1-fleet repository
is responsible for assigning the namespaces to the dev teams and configuring Flux with the
necessary RBAC to reconcile the d1-apps
repository across the cluster fleet.
The platform team is also responsible for setting up any cluster-wide resources that the applications depend on, such as CRD controllers, Ingress classes, Storage classes, etc. The cluster components managed by the platform team are defined in the d1-infra repository.
Access to this repository is restricted to the dev teams and the
Flux bot account.
The Flux bot should be the only account with direct push access to the main
branch.
This repository contains the following directories:
- The components dir contains Flux HelmReleases that define how the applications are deployed to the cluster fleet and which configuration should be used for each environment.
- The update-policies dir contains the Flux policies for automating the application's version updates of the OCI charts referred in Helm releases.
The application components are grouped by namespace, and are defined in a directory with the following structure:
./components/
└── namespace
├── base
│ ├── kustomization.yaml
│ └── release1.yaml
│ └── release2.yaml
├── production
│ ├── kustomization.yaml
│ ├── release1-values.yaml
│ └── release2-values.yaml
└── staging
├── kustomization.yaml
├── release1-values.yaml
└── release2-values.yaml
Each namespace is independently reconciled on clusters and can contain multiple HelmReleases with custom configuration per environment.