Why Use a Multicluster Architecture?
Single Kubernetes clusters can handle multiple workloads via namespaces and pods. However, large-scale or regulated deployments often require more:
Multicluster setups introduce operational overhead. Evaluate your tenancy, compliance, and scale requirements before proceeding.
Open-Source Multicluster Solutions
Several community-driven projects enable cross-cluster orchestration:Kubernetes Cluster Federation (KubeFed)
KubeFed provides federated APIs to coordinate resources across multiple Kubernetes clusters.- v1: Deprecated
- v2: Archived
KubeFed v2 is no longer actively developed. Consider alternative projects for production use.
Open Cluster Management (OCM)
OCM by Red Hat implements a hub-and-spoke control plane:- Hub cluster: Central management plane
- Spoke clusters: Agents (
clusterlet) register and enforce policies

- Cluster registration and discovery
- Placement, scheduling, and policy enforcement
Karmada
Karmada introduces a separate control plane with its own API server and scheduler.
- Dedicated Karmada API server
- Workload controllers sync across clusters
- Requires agent deployment in each member cluster
Enterprise Multicluster Management with Azure Kubernetes Fleet Manager
Azure Kubernetes Fleet Manager offers a managed service for AKS fleet operations at scale:- Centralized cluster inventory and bulk operations
- Automated provisioning, upgrades, and configuration
- Policy-driven workload placement and governance
- Integrated north-south load balancing across regions
You need an Azure subscription with required permissions to create and manage fleet resources.
Example: Placing a Namespace Across Clusters
Define aClusterResourcePlacement CRD to deploy a namespace to clusters in eastus:
Example: Creating a MultiClusterService
Import a service across your fleet using theMultiClusterService CRD:
Fleet Manager Features
You can orchestrate rollouts in phases (e.g., test, staging, prod) by grouping clusters into waves:

Links and References
- Kubernetes Federation (KubeFed) Documentation
- Open Cluster Management (OCM) Project
- Karmada Official Site
- Azure Kubernetes Fleet Manager
- Azure Kubernetes Service (AKS) Overview