diff --git a/docs/book/src/developer/core/tilt.md b/docs/book/src/developer/core/tilt.md index 7c95eb278571..8e693e6a6d27 100644 --- a/docs/book/src/developer/core/tilt.md +++ b/docs/book/src/developer/core/tilt.md @@ -335,7 +335,7 @@ Custom values for variable substitutions can be set using `kustomize_substitutio ```yaml kustomize_substitutions: NAMESPACE: "default" - KUBERNETES_VERSION: "v1.31.2" + KUBERNETES_VERSION: "v1.32.0" CONTROL_PLANE_MACHINE_COUNT: "1" WORKER_MACHINE_COUNT: "3" # Note: kustomize substitutions expects the values to be strings. This can be achieved by wrapping the values in quotation marks. diff --git a/docs/book/src/user/quick-start.md b/docs/book/src/user/quick-start.md index 45ba31aae8fa..50735e85e028 100644 --- a/docs/book/src/user/quick-start.md +++ b/docs/book/src/user/quick-start.md @@ -1387,7 +1387,7 @@ The Docker provider is not designed for production use and is intended for devel ```bash clusterctl generate cluster capi-quickstart --flavor development \ - --kubernetes-version v1.31.2 \ + --kubernetes-version v1.32.0 \ --control-plane-machine-count=3 \ --worker-machine-count=3 \ > capi-quickstart.yaml @@ -1431,7 +1431,7 @@ clusterctl generate cluster capi-quickstart \ ```bash clusterctl generate cluster capi-quickstart \ --infrastructure azure \ - --kubernetes-version v1.31.2 \ + --kubernetes-version v1.32.0 \ --control-plane-machine-count=3 \ --worker-machine-count=3 \ > capi-quickstart.yaml @@ -1446,7 +1446,7 @@ yq -i "with(. | select(.kind == \"AzureClusterIdentity\"); .spec.type |= \"Servi ```bash clusterctl generate cluster capi-quickstart \ - --kubernetes-version v1.31.2 \ + --kubernetes-version v1.32.0 \ --control-plane-machine-count=3 \ --worker-machine-count=3 \ > capi-quickstart.yaml @@ -1500,7 +1500,7 @@ and see an output similar to this: ```bash NAME PHASE AGE VERSION -capi-quickstart Provisioned 8s v1.31.2 +capi-quickstart Provisioned 8s v1.32.0 ``` To verify the first control plane is up: @@ -1513,7 +1513,7 @@ You should see an output is similar to this: ```bash NAME CLUSTER INITIALIZED API SERVER AVAILABLE REPLICAS READY UPDATED UNAVAILABLE AGE VERSION -capi-quickstart-g2trk capi-quickstart true 3 3 3 4m7s v1.31.2 +capi-quickstart-g2trk capi-quickstart true 3 3 3 4m7s v1.32.0 ```