Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📖 ClusterClass: restructure documentation #5954

Merged
merged 1 commit into from
Jan 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/book/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
- [ClusterResourceSet](./tasks/experimental-features/cluster-resource-set.md)
- [ClusterClass](./tasks/experimental-features/cluster-class/index.md)
- [Writing a ClusterClass](./tasks/experimental-features/cluster-class/write-clusterclass.md)
- [Upgrading a Cluster](./tasks/experimental-features/cluster-class/upgrade-cluster.md)
- [Changing a ClusterClass](./tasks/experimental-features/cluster-class/change-clusterclass.md)
- [Operating a managed Cluster](./tasks/experimental-features/cluster-class/operate-cluster.md)
- [Ignition Bootstrap configuration](./tasks/experimental-features/ignition.md)
- [clusterctl CLI](./clusterctl/overview.md)
- [clusterctl Commands](clusterctl/commands/commands.md)
Expand All @@ -34,6 +34,8 @@
- [upgrade](clusterctl/commands/upgrade.md)
- [delete](clusterctl/commands/delete.md)
- [completion](clusterctl/commands/completion.md)
- [alpha rollout](clusterctl/commands/alpha-rollout.md)
- [alpha topology plan](clusterctl/commands/alpha-topology-plan.md)
- [clusterctl Configuration](clusterctl/configuration.md)
- [clusterctl Provider Contract](clusterctl/provider-contract.md)
- [clusterctl for Developers](clusterctl/developers.md)
Expand Down
3 changes: 3 additions & 0 deletions docs/book/src/clusterctl/commands/alpha-topology-plan.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# clusterctl alpha topology plan

**Under Construction**
2 changes: 1 addition & 1 deletion docs/book/src/clusterctl/commands/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
* [`clusterctl delete`](delete.md)
* [`clusterctl completion`](completion.md)
* [`clusterctl alpha rollout`](alpha-rollout.md)
* [`clusterctl config cluster` (deprecated)](config-cluster.md)
* [`clusterctl alpha topology plan`](alpha-topology-plan.md)
107 changes: 0 additions & 107 deletions docs/book/src/clusterctl/commands/config-cluster.md

This file was deleted.

14 changes: 8 additions & 6 deletions docs/book/src/tasks/experimental-features/cluster-class/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,17 @@ ClusterClass is a powerful abstraction implemented on top of existing interfaces
**Variable name to enable/disable the feature gate**: `CLUSTER_TOPOLOGY`

Additional documentation:
* Background information: [ClusterClass and Managed Topologies CAEP](https://github.com/kubernetes-sigs/cluster-api/blob/main/docs/proposals/202105256-cluster-class-and-managed-topologies.md)
* For ClusterClass authors:
* [Writing a ClusterClass](./write-clusterclass.md)
* Publishing a ClusterClass is documented in the [clusterctl Provider contract]
* For Cluster operators:
* Creating a Cluster is documented in the [Quick Start guide]
* [Upgrading a Cluster](./upgrade-cluster.md)
* [Writing a ClusterClass](./write-clusterclass.md)
* [Changing a ClusterClass](./change-clusterclass.md)
* Additional background information can be found in the [ClusterClass and Managed Topologies CAEP](https://github.com/kubernetes-sigs/cluster-api/blob/main/docs/proposals/202105256-cluster-class-and-managed-topologies.md)
* Publishing a ClusterClass for clusterctl usage: [clusterctl Provider contract]
* For Cluster operators:
* Creating a Cluster: [Quick Start guide]
* [Operating a managed Cluster](./operate-cluster.md)
* Planning topology rollouts: [clusterctl alpha topology plan]

<!-- links -->
[Quick Start guide]: ../../../user/quick-start.md
[clusterctl Provider contract]: ../../../clusterctl/provider-contract.md
[clusterctl alpha topology plan]: ../../../clusterctl/commands/alpha-topology-plan.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Upgrade a Cluster using Managed Topology
# Operating a managed Cluster

## Upgrade the Cluster

The `spec.topology` field added to the Cluster object as part of ClusterClass allows changes made on the Cluster to be propagated across all relevant objects. This turns a Kubernetes cluster upgrade into a one-touch operation.
Let's assume we have created a CAPD cluster with ClusterClass and Kubernetes v1.21.2 (as documented in the [Quick Start guide]). Looking at the cluster, the version of the control plane and the MachineDeployments is v1.21.2.
Expand Down