From 34cbfa076cdea77ae2586e5b22493e4a052d7414 Mon Sep 17 00:00:00 2001 From: killianmuldoon Date: Tue, 5 Oct 2021 12:11:15 +0100 Subject: [PATCH] updated column alignment and nits --- .../tasks/experimental-features/cluster-classes.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/book/src/tasks/experimental-features/cluster-classes.md b/docs/book/src/tasks/experimental-features/cluster-classes.md index 7ebc681edab5..f08ad83068e1 100644 --- a/docs/book/src/tasks/experimental-features/cluster-classes.md +++ b/docs/book/src/tasks/experimental-features/cluster-classes.md @@ -132,23 +132,23 @@ kubectl get kubeadmcontrolplane The output should be similar to: ```bash -NAME INITIALIZED API SERVER AVAILABLE VERSION REPLICAS READY UPDATED UNAVAILABLE +NAME INITIALIZED API SERVER AVAILABLE VERSION REPLICAS READY UPDATED UNAVAILABLE clusterclass-quickstart true v1.21.2 1 1 1 ``` ## Upgrade a Cluster using Managed Topology -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. +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. Looking at the newly-created cluster, the version of the control plane and the machine deployments is v1.21.2. ```bash > kubectl get kubeadmcontrolplane,machinedeployments -NAME CLUSTER INITIALIZED API SERVER AVAILABLE REPLICAS READY UPDATED UNAVAILABLE AGE VERSION +NAME CLUSTER INITIALIZED API SERVER AVAILABLE REPLICAS READY UPDATED UNAVAILABLE AGE VERSION kubeadmcontrolplane.controlplane.cluster.x-k8s.io/clusterclass-quickstart-XXXX clusterclass-quickstart true true 1 1 1 0 2m21s v1.21.2 -NAME CLUSTER REPLICAS READY UPDATED UNAVAILABLE PHASE AGE VERSION +NAME CLUSTER REPLICAS READY UPDATED UNAVAILABLE PHASE AGE VERSION machinedeployment.cluster.x-k8s.io/clusterclass-quickstart-linux-workers-XXXX clusterclass-quickstart 1 1 1 0 Running 2m21s v1.21.2 ``` @@ -169,10 +169,10 @@ watch kubectl get kubeadmcontrolplane,machinedeployments ``` After a few minutes the upgrade will be complete and the output will be similar to: ```bash -NAME CLUSTER INITIALIZED API SERVER AVAILABLE REPLICAS READY UPDATED UNAVAILABLE AGE VERSION +NAME CLUSTER INITIALIZED API SERVER AVAILABLE REPLICAS READY UPDATED UNAVAILABLE AGE VERSION kubeadmcontrolplane.controlplane.cluster.x-k8s.io/clusterclass-quickstart-XXXX clusterclass-quickstart true true 1 1 1 0 7m29s v1.22.0 -NAME CLUSTER REPLICAS READY UPDATED UNAVAILABLE PHASE AGE VERSION +NAME CLUSTER REPLICAS READY UPDATED UNAVAILABLE PHASE AGE VERSION machinedeployment.cluster.x-k8s.io/clusterclass-quickstart-linux-workers-XXXX clusterclass-quickstart 1 1 1 0 Running 7m29s v1.22.0 ```