Management Plane

Management Plane #

The management plane provides infrastructure services required to provision, manage, and operate the substrate. These are the foundational systems that must be operational before tenant workloads can run.


Management Plane Components #

ComponentPurpose
Bootstrap NodeAnsible controller, artifact server, PXE boot infrastructure
Management HypervisorHosts observability, automation, and access services

Characteristics #

Management plane infrastructure is:

  • Infrastructure-critical — Must remain available to support recovery and rebuild operations
  • Slow change cadence — Changes are deliberate and carefully tested
  • Manually provisioned — Initial setup requires physical access or manual intervention
  • Ansible-managed — Day-2 configuration via Ansible, not Terraform

Recovery Model #

The management plane is designed for recoverability:

  1. Bootstrap node can rebuild the entire substrate from staged artifacts
  2. Management hypervisor hosts are rebuilt from Packer templates
  3. Configuration is code — All settings are in Git, not in the running systems

If the management hypervisor fails, the bootstrap node can reprovision it. If the bootstrap node fails, it can be rebuilt from a fresh OS install and the Git repositories.


Separation from Tenant Compute #

Management plane infrastructure is deliberately separated from tenant workloads:

AspectManagement PlaneTenant Compute
Change cadenceSlow, deliberateFast, experimental
Blast radiusMust be minimizedTolerable
Rebuild toleranceLow — avoid rebuildsHigh — expect rebuilds
ProvisioningAnsibleTerraform (future)

This separation ensures that tenant experimentation cannot impact substrate stability.

Page last modified: January 23, 2026