global.plane.mode: unified, how the components interact, and when unified mode makes sense.
Responsibilities in Unified mode
Because control and data responsibilities share one cluster in unified mode, the following characteristics apply:- Management and execution share infrastructure: The APC API platform management service, the Astro UI web interface, the deployment orchestrator, ingress controllers, logging pipelines, and metrics components all run together.
- Reduced cross-cluster networking: The deployment orchestrator communicates locally with the APC API, and Prometheus, the central metrics store, ingests and scrapes everything in-cluster without federation.
- Shared security surface: Ingress endpoints for the Astro UI and APC API (
app.<base-domain>,houston.<base-domain>,deployments.<base-domain>, etc.) and registry/logging endpoints all originate from the same cluster. - Simplified operations for sandbox/test: Backups, upgrades, and monitoring target a single cluster.
Components enabled in Unified mode
When you enableglobal.plane.mode: unified in the values.yaml file, APC enables both the control plane and data plane Helm charts, which includes the following services:
- Control plane services: The web interface (Astro UI), the platform management service (APC API), scheduled jobs, the event streaming broker (NATS JetStream), the alert routing service (Alertmanager), control-plane NGINX ingress, registry token jobs, and the central metrics store (Prometheus).
- Data plane services: The deployment orchestrator, the secret distribution job (Config Syncer), data plane NGINX ingress, the platform registry (Registry), the log forwarder daemonset (Vector), the log store (Elasticsearch - if enabled), the cluster state exporter (kube-state-metrics), metrics gateway endpoints (Prometheus federation/auth) used locally, and namespace-pool helpers.
- Shared services: Optional Postgres/PgBouncer (for the APC API), base Prometheus StatefulSet, Airflow CRDs.
Network and DNS footprint
Unified clusters expose a superset of ingress hostnames, commonly:app.<base-domain>: Astro UI.houston.<base-domain>: APC API for UI, CLI, deployment orchestrator callbacks.deployments.<base-domain>: Ingress route for Airflow UIs.registry.<base-domain>: Platform container registry (Registry) if enabled.alertmanager.<base-domain>andprometheus.<base-domain>: Optional dashboards.<base-domain>(optional): Redirect toapp.<base-domain>.
Operational implications
Transition to split mode
Many Organizations start with a unified mode and later migrate to split mode for isolation or scalability. Plan ahead for migrating to split mode by:- Using external Postgres and registry storage so migrating the control plane doesn’t require moving data twice.
- Keeping DNS hostnames consistent with the future split design, for example
app.<base-domain>anddeployments.<base-domain>, so you can later point records at different clusters. - Managing configuration through values files or automation so you can reproduce control plane settings in a dedicated cluster.