Kubernetes Cluster API
Kubernetes Cluster API (CAPI) is a Kubernetes sub-project focused on providing declarative APIs and tooling to simplify provisioning, upgrading, and operating multiple Kubernetes clusters.
Overview
Started by SIG Cluster Lifecycle, Cluster API uses Kubernetes-style APIs and patterns to automate cluster lifecycle management. The infrastructure (VMs, networks, load balancers, VPCs) and Kubernetes configuration are defined declaratively, enabling consistent and repeatable cluster deployments across environments.
Why Cluster API?
While kubeadm reduces installation complexity, it doesn't address day-to-day cluster management:
- How to consistently provision infrastructure across providers and locations?
- How to automate cluster lifecycle (upgrades, deletion)?
- How to scale processes to manage any number of clusters?
Cluster API addresses these gaps with declarative, Kubernetes-style APIs that automate cluster creation, configuration, and management.
Goals
- Manage lifecycle (create, scale, upgrade, destroy) of Kubernetes-conformant clusters via declarative API
- Work in different environments (on-premises and cloud)
- Define common operations with swappable implementations
- Reuse existing ecosystem components (cluster-autoscaler, node-problem-detector)
- Provide transition path for existing tools to adopt incrementally
Non-Goals
- Add APIs to Kubernetes core
- Manage infrastructure unrelated to Kubernetes clusters
- Force all lifecycle products to use these APIs
- Manage non-CAPI provisioned clusters
- Manage single cluster spanning multiple providers
- Configure machines after create/upgrade
Quick Navigation
| Topic |
Reference |
| Getting Started |
getting-started.md |
| Concepts & Architecture |
concepts.md |
| Certificates |
certificates.md |
| Bootstrap (Kubeadm/MicroK8s) |
bootstrap.md |
| Cluster Operations |
cluster-operations.md |
| Experimental Features |
experimental.md |
| clusterctl CLI |
clusterctl.md |
| Developer Guide |
developer.md |
| Troubleshooting |
troubleshooting.md |
| API Reference & Providers |
api-reference.md |
| Security & PSS |
security.md |
| Controllers |
controllers.md |
| Version Migrations |
migrations.md |
| FAQ |
faq.md |
| Best Practices |
best-practices.md |
When to Use
- Provisioning Kubernetes clusters across multiple infrastructure providers
- Managing cluster lifecycle (create, scale, upgrade, destroy)
- Automating cluster operations with declarative APIs
- Implementing GitOps workflows for cluster management
- Building custom infrastructure providers
Core Concepts
Architecture
┌─────────────────────────────────────────┐
│ Management Cluster │
│ ┌─────────────┐ ┌─────────────────┐ │
│ │ CAPI Core │ │ Infrastructure │ │
│ │ Controllers │ │ Provider │ │
│ └─────────────┘ └─────────────────┘ │
│ ┌─────────────┐ ┌─────────────────┐ │
│ │ Bootstrap │ │ Control Plane │ │
│ │ Provider │ │ Provider │ │
│ └─────────────┘ └─────────────────┘ │
└─────────────────────┬───────────────────┘
│ manages
┌───────────┴───────────┐
▼ ▼
┌─────────────────┐ ┌─────────────────┐
│ Workload │ │ Workload │
│ Cluster 1 │ │ Cluster N │
└─────────────────┘ └─────────────────┘
Key Components
| Component |
Purpose |
| Management Cluster |
Hosts CAPI controllers, manages workloads |
| Workload Cluster |
User clusters managed by CAPI |
| Infrastructure Provider |
Provisions VMs, networks, load balancers |
| Bootstrap Provider |
Generates cloud-init/ignition configs |
| Control Plane Provider |
Manages control plane nodes lifecycle |
Core Resources
| Resource |
Description |
| Cluster |
Represents a Kubernetes cluster |
| Machine |
Represents a single node/VM |
| MachineSet |
Manages replicas of Machines |
| MachineDeployment |
Declarative updates for MachineSets |
| MachineHealthCheck |
Automatic remediation of unhealthy nodes |
Quick Start
# Install clusterctl
curl -L https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.12.0/clusterctl-linux-amd64 -o clusterctl
chmod +x clusterctl
sudo mv clusterctl /usr/local/bin/
# Initialize management cluster
clusterctl init --infrastructure docker
# Create workload cluster
clusterctl generate cluster my-cluster --kubernetes-version v1.32.0 --control-plane-machine-count 1 --worker-machine-count 3 | kubectl apply -f -
# Get cluster kubeconfig
clusterctl get kubeconfig my-cluster > my-cluster.kubeconfig
# Delete cluster
kubectl delete cluster my-cluster
Common Workflows
Cluster Lifecycle
# Create cluster from template
clusterctl generate cluster prod-cluster \
--infrastructure aws \
--kubernetes-version v1.32.0 \
--control-plane-machine-count 3 \
--worker-machine-count 5 \
| kubectl apply -f -
# Scale workers
kubectl scale machinedeployment prod-cluster-md-0 --replicas=10
# Upgrade Kubernetes version
kubectl patch cluster prod-cluster --type merge -p '{"spec":{"topology":{"version":"v1.33.0"}}}'
# Move cluster to new management cluster
clusterctl move --to-kubeconfig target-mgmt.kubeconfig
Health Monitoring
apiVersion: cluster.x-k8s.io/v1beta1
kind: MachineHealthCheck
metadata:
name: my-cluster-mhc
spec:
clusterName: my-cluster
maxUnhealthy: 40%
nodeStartupTimeout: 10m
selector:
matchLabels:
cluster.x-k8s.io/cluster-name: my-cluster
unhealthyConditions:
- type: Ready
status: "False"
timeout: 5m
- type: Ready
status: Unknown
timeout: 5m
Critical Prohibitions
- Do NOT modify management cluster directly without proper backup
- Do NOT delete Machine objects directly (use MachineDeployment scale)
- Do NOT mix provider versions without checking compatibility
- Do NOT skip cluster upgrade steps (control plane before workers)
- Do NOT ignore MachineHealthCheck alerts
Release Highlights (1.14.x)
- Kubernetes compatibility moves to management clusters
v1.33.x -> v1.37.x and workload clusters v1.31.x -> v1.37.x by the 1.14.1 line.
- API types move into a dedicated Golang module: stronger compatibility guarantees and a much smaller, tightly controlled dependency tree that reduces CVE exposure from transitive dependencies.
- Kubeadm control plane robustness: safe joining of worker nodes on older Kubernetes versions, improved forward etcd leadership during control plane machine deletion, and remediation of unhealthy machines during intermediate steps of chained upgrades.
- Observability: the upgrade plan is surfaced in cluster status, aggregated machine versions are exposed in status, and runtime extension errors appear in cluster conditions.
- Scale/performance: ClusterCache clients expose cache tuning options for a smaller memory footprint, and managedFields interning reduces stored state.
- Deprecation warning: the
v1beta1 API is on track to be unserved in CAPI v1.16 (migrate to v1beta2), and Docker* resources will be removed in v1.15 (migrate to Dev* resources). An experimental clusterctl convert command is available.
Release Highlights (1.13.x)
- Kubernetes compatibility moves to management clusters
v1.32.x -> v1.36.x and workload clusters v1.30.x -> v1.36.x by the 1.13.2 line.
v1alpha3 and v1alpha4 API versions are now removed; providers should keep moving toward the v1beta2 contract because v1beta1 remains on the path to becoming unserved in a later release.
- Cluster topology can now drive
rolloutAfter for both control plane and MachineDeployment resources.
- KubeadmControlPlane improves remediation tolerance for multiple failures and better surfaces common join/remediation symptoms.
PriorityQueue and ReconcilerRateLimiting are now beta defaults in the 1.13 line, which can change reconciliation behavior under load.
Scripts
Go-based tools in scripts/. Run via go run ./tool-name from the scripts directory.
| Tool |
Purpose |
validate-manifests |
Validate YAML manifests against CRD schemas |
run-clusterctl-diagnose |
Run clusterctl describe and save diagnostic report |
migration-checker |
Check v1beta1→v1beta2 migration readiness |
check-cluster-health |
Analyze conditions across all cluster objects |
analyze-conditions |
Parse and report False/Unknown conditions |
scaffold-provider |
Generate new provider directory structure |
generate-cluster-template |
Generate templates from ClusterClass |
export-cluster-state |
Export cluster state for backup/move |
audit-security |
Check PSS compliance and security posture |
timeline-events |
Build provisioning event timeline |
compare-versions |
Compare CAPI version specs and API changes |
check-provider-contract |
Verify provider CRD compliance with contracts |
lint-cluster-templates |
Lint and validate CAPI manifests |
Assets
Reusable templates in assets/:
- Cluster templates:
cluster-minimal.yaml, cluster-production.yaml, cluster-clusterclass.yaml, clusterclass-example.yaml
- Provider configs:
docker-quickstart.yaml, aws-credentials.yaml, azure-credentials.yaml, provider-matrix.md
- Operations:
upgrade-checklist.md, migration-v1beta2.md, troubleshooting-flow.md, security-audit-report.md, dr-backup-restore.md, etcd-backup.yaml
- GitOps:
argocd-cluster-app.yaml, flux-kustomization.yaml, gitops-rbac.yaml
- Monitoring:
prometheus-alerts.yaml
Links
1---2name: k8s-cluster-api3description: Kubernetes Cluster API v1.12. Covers clusterctl CLI, ClusterClass, GitOps integration. Scripts for health checks, backup, migration, linting. Templates: clusters, DR, Prometheus. Use when provisioning, upgrading, or operating Kubernetes clusters with CAPI, or running clusterctl and ClusterClass workflows. Keywords: CAPI, clusterctl, kubeadm, cluster lifecycle.4---5
6# Kubernetes Cluster API
7
8Kubernetes Cluster API (CAPI) is a Kubernetes sub-project focused on providing declarative APIs and tooling to simplify provisioning, upgrading, and operating multiple Kubernetes clusters.
9
10## Overview
11
12Started by SIG Cluster Lifecycle, Cluster API uses Kubernetes-style APIs and patterns to automate cluster lifecycle management. The infrastructure (VMs, networks, load balancers, VPCs) and Kubernetes configuration are defined declaratively, enabling consistent and repeatable cluster deployments across environments.
13
14### Why Cluster API?
15
16While kubeadm reduces installation complexity, it doesn't address day-to-day cluster management:
17
18- How to consistently provision infrastructure across providers and locations?
19- How to automate cluster lifecycle (upgrades, deletion)?
20- How to scale processes to manage any number of clusters?
21
22Cluster API addresses these gaps with declarative, Kubernetes-style APIs that automate cluster creation, configuration, and management.
23
24### Goals
25
26- Manage lifecycle (create, scale, upgrade, destroy) of Kubernetes-conformant clusters via declarative API
27- Work in different environments (on-premises and cloud)
28- Define common operations with swappable implementations
29- Reuse existing ecosystem components (cluster-autoscaler, node-problem-detector)
30- Provide transition path for existing tools to adopt incrementally
31
32### Non-Goals
33
34- Add APIs to Kubernetes core
35- Manage infrastructure unrelated to Kubernetes clusters
36- Force all lifecycle products to use these APIs
37- Manage non-CAPI provisioned clusters
38- Manage single cluster spanning multiple providers
39- Configure machines after create/upgrade
40
41## Quick Navigation
42
43| Topic | Reference |
44| ---------------------------- | --------------------------------------------------------- |
45| Getting Started | [getting-started.md](references/getting-started.md) |
46| Concepts & Architecture | [concepts.md](references/concepts.md) |
47| Certificates | [certificates.md](references/certificates.md) |
48| Bootstrap (Kubeadm/MicroK8s) | [bootstrap.md](references/bootstrap.md) |
49| Cluster Operations | [cluster-operations.md](references/cluster-operations.md) |
50| Experimental Features | [experimental.md](references/experimental.md) |
51| clusterctl CLI | [clusterctl.md](references/clusterctl.md) |
52| Developer Guide | [developer.md](references/developer.md) |
53| Troubleshooting | [troubleshooting.md](references/troubleshooting.md) |
54| API Reference & Providers | [api-reference.md](references/api-reference.md) |
55| Security & PSS | [security.md](references/security.md) |
56| Controllers | [controllers.md](references/controllers.md) |
57| Version Migrations | [migrations.md](references/migrations.md) |
58| FAQ | [faq.md](references/faq.md) |
59| Best Practices | [best-practices.md](references/best-practices.md) |
60
61## When to Use
62
63- Provisioning Kubernetes clusters across multiple infrastructure providers
64- Managing cluster lifecycle (create, scale, upgrade, destroy)
65- Automating cluster operations with declarative APIs
66- Implementing GitOps workflows for cluster management
67- Building custom infrastructure providers
68
69## Core Concepts
70
71### Architecture
72
73```
74┌─────────────────────────────────────────┐
75│ Management Cluster │
76│ ┌─────────────┐ ┌─────────────────┐ │
77│ │ CAPI Core │ │ Infrastructure │ │
78│ │ Controllers │ │ Provider │ │
79│ └─────────────┘ └─────────────────┘ │
80│ ┌─────────────┐ ┌─────────────────┐ │
81│ │ Bootstrap │ │ Control Plane │ │
82│ │ Provider │ │ Provider │ │
83│ └─────────────┘ └─────────────────┘ │
84└─────────────────────┬───────────────────┘
85 │ manages
86 ┌───────────┴───────────┐
87 ▼ ▼
88┌─────────────────┐ ┌─────────────────┐
89│ Workload │ │ Workload │
90│ Cluster 1 │ │ Cluster N │
91└─────────────────┘ └─────────────────┘
92```
93
94### Key Components
95
96| Component | Purpose |
97| ----------------------- | ----------------------------------------- |
98| Management Cluster | Hosts CAPI controllers, manages workloads |
99| Workload Cluster | User clusters managed by CAPI |
100| Infrastructure Provider | Provisions VMs, networks, load balancers |
101| Bootstrap Provider | Generates cloud-init/ignition configs |
102| Control Plane Provider | Manages control plane nodes lifecycle |
103
104### Core Resources
105
106| Resource | Description |
107| ------------------ | ---------------------------------------- |
108| Cluster | Represents a Kubernetes cluster |
109| Machine | Represents a single node/VM |
110| MachineSet | Manages replicas of Machines |
111| MachineDeployment | Declarative updates for MachineSets |
112| MachineHealthCheck | Automatic remediation of unhealthy nodes |
113
114## Quick Start
115
116```bash
117# Install clusterctl
118curl -L https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.12.0/clusterctl-linux-amd64 -o clusterctl
119chmod +x clusterctl
120sudo mv clusterctl /usr/local/bin/
121
122# Initialize management cluster
123clusterctl init --infrastructure docker
124
125# Create workload cluster
126clusterctl generate cluster my-cluster --kubernetes-version v1.32.0 --control-plane-machine-count 1 --worker-machine-count 3 | kubectl apply -f -
127
128# Get cluster kubeconfig
129clusterctl get kubeconfig my-cluster > my-cluster.kubeconfig
130
131# Delete cluster
132kubectl delete cluster my-cluster
133```
134
135## Common Workflows
136
137### Cluster Lifecycle
138
139```bash
140# Create cluster from template
141clusterctl generate cluster prod-cluster \
142 --infrastructure aws \
143 --kubernetes-version v1.32.0 \
144 --control-plane-machine-count 3 \
145 --worker-machine-count 5 \
146 | kubectl apply -f -
147
148# Scale workers
149kubectl scale machinedeployment prod-cluster-md-0 --replicas=10
150
151# Upgrade Kubernetes version
152kubectl patch cluster prod-cluster --type merge -p '{"spec":{"topology":{"version":"v1.33.0"}}}'
153
154# Move cluster to new management cluster
155clusterctl move --to-kubeconfig target-mgmt.kubeconfig
156```
157
158### Health Monitoring
159
160```yaml
161apiVersion: cluster.x-k8s.io/v1beta1
162kind: MachineHealthCheck
163metadata:
164 name: my-cluster-mhc
165spec:
166 clusterName: my-cluster
167 maxUnhealthy: 40%
168 nodeStartupTimeout: 10m
169 selector:
170 matchLabels:
171 cluster.x-k8s.io/cluster-name: my-cluster
172 unhealthyConditions:
173 - type: Ready
174 status: "False"
175 timeout: 5m
176 - type: Ready
177 status: Unknown
178 timeout: 5m
179```
180
181## Critical Prohibitions
182
183- Do NOT modify management cluster directly without proper backup
184- Do NOT delete Machine objects directly (use MachineDeployment scale)
185- Do NOT mix provider versions without checking compatibility
186- Do NOT skip cluster upgrade steps (control plane before workers)
187- Do NOT ignore MachineHealthCheck alerts
188
189## Release Highlights (1.14.x)
190
191- Kubernetes compatibility moves to management clusters `v1.33.x -> v1.37.x` and workload clusters `v1.31.x -> v1.37.x` by the `1.14.1` line.
192- API types move into a dedicated Golang module: stronger compatibility guarantees and a much smaller, tightly controlled dependency tree that reduces CVE exposure from transitive dependencies.
193- Kubeadm control plane robustness: safe joining of worker nodes on older Kubernetes versions, improved forward etcd leadership during control plane machine deletion, and remediation of unhealthy machines during intermediate steps of chained upgrades.
194- Observability: the upgrade plan is surfaced in cluster status, aggregated machine versions are exposed in status, and runtime extension errors appear in cluster conditions.
195- Scale/performance: ClusterCache clients expose cache tuning options for a smaller memory footprint, and managedFields interning reduces stored state.
196- Deprecation warning: the `v1beta1` API is on track to be unserved in CAPI `v1.16` (migrate to `v1beta2`), and `Docker*` resources will be removed in `v1.15` (migrate to `Dev*` resources). An experimental `clusterctl convert` command is available.
197
198## Release Highlights (1.13.x)
199
200- Kubernetes compatibility moves to management clusters `v1.32.x -> v1.36.x` and workload clusters `v1.30.x -> v1.36.x` by the `1.13.2` line.
201- `v1alpha3` and `v1alpha4` API versions are now removed; providers should keep moving toward the `v1beta2` contract because `v1beta1` remains on the path to becoming unserved in a later release.
202- Cluster topology can now drive `rolloutAfter` for both control plane and `MachineDeployment` resources.
203- KubeadmControlPlane improves remediation tolerance for multiple failures and better surfaces common join/remediation symptoms.
204- `PriorityQueue` and `ReconcilerRateLimiting` are now beta defaults in the `1.13` line, which can change reconciliation behavior under load.
205
206## Scripts
207
208Go-based tools in `scripts/`. Run via `go run ./tool-name` from the scripts directory.
209
210| Tool | Purpose |
211| --------------------------- | -------------------------------------------------- |
212| `validate-manifests` | Validate YAML manifests against CRD schemas |
213| `run-clusterctl-diagnose` | Run clusterctl describe and save diagnostic report |
214| `migration-checker` | Check v1beta1→v1beta2 migration readiness |
215| `check-cluster-health` | Analyze conditions across all cluster objects |
216| `analyze-conditions` | Parse and report False/Unknown conditions |
217| `scaffold-provider` | Generate new provider directory structure |
218| `generate-cluster-template` | Generate templates from ClusterClass |
219| `export-cluster-state` | Export cluster state for backup/move |
220| `audit-security` | Check PSS compliance and security posture |
221| `timeline-events` | Build provisioning event timeline |
222| `compare-versions` | Compare CAPI version specs and API changes |
223| `check-provider-contract` | Verify provider CRD compliance with contracts |
224| `lint-cluster-templates` | Lint and validate CAPI manifests |
225
226## Assets
227
228Reusable templates in `assets/`:
229
230- **Cluster templates**: `cluster-minimal.yaml`, `cluster-production.yaml`, `cluster-clusterclass.yaml`, `clusterclass-example.yaml`
231- **Provider configs**: `docker-quickstart.yaml`, `aws-credentials.yaml`, `azure-credentials.yaml`, `provider-matrix.md`
232- **Operations**: `upgrade-checklist.md`, `migration-v1beta2.md`, `troubleshooting-flow.md`, `security-audit-report.md`, `dr-backup-restore.md`, `etcd-backup.yaml`
233- **GitOps**: `argocd-cluster-app.yaml`, `flux-kustomization.yaml`, `gitops-rbac.yaml`
234- **Monitoring**: `prometheus-alerts.yaml`
235
236## Links
237
238- [Documentation](https://cluster-api.sigs.k8s.io/)
239- [GitHub](https://github.com/kubernetes-sigs/cluster-api)
240- [Releases](https://github.com/kubernetes-sigs/cluster-api/releases)