diff --git a/.gitignore b/.gitignore index d04e6cf999cd..cea23eb5611d 100644 --- a/.gitignore +++ b/.gitignore @@ -80,3 +80,10 @@ _releasenotes # Helm .helm + +# Used during parts of the build process. Files _should_ get cleaned up automatically. +# This is also a good location for any temporary manfiests used during development +tmp + +# asdf (not a typo! ;) used to manage multiple versions of tools +.tool-versions diff --git a/docs/book/src/user/quick-start.md b/docs/book/src/user/quick-start.md index 1addbc307291..7cb6309ecbe0 100644 --- a/docs/book/src/user/quick-start.md +++ b/docs/book/src/user/quick-start.md @@ -948,7 +948,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.24.0 \ + --kubernetes-version v1.25.0 \ --control-plane-machine-count=3 \ --worker-machine-count=3 \ > capi-quickstart.yaml @@ -960,7 +960,7 @@ clusterctl generate cluster capi-quickstart --flavor development \ ```bash export CLUSTER_NAME=kind export CLUSTER_NAMESPACE=vcluster -export KUBERNETES_VERSION=1.23.4 +export KUBERNETES_VERSION=1.25.0 export HELM_VALUES="service:\n type: NodePort" kubectl create namespace ${CLUSTER_NAMESPACE} @@ -975,7 +975,7 @@ clusterctl generate cluster ${CLUSTER_NAME} \ ```bash clusterctl generate cluster capi-quickstart \ - --kubernetes-version v1.24.0 \ + --kubernetes-version v1.25.0 \ --control-plane-machine-count=3 \ --worker-machine-count=3 \ > capi-quickstart.yaml @@ -1034,8 +1034,8 @@ kubectl get kubeadmcontrolplane You should see an output is similar to this: ```bash -NAME INITIALIZED API SERVER AVAILABLE VERSION REPLICAS READY UPDATED UNAVAILABLE -capi-quickstart-control-plane true v1.24.0 3 3 3 +NAME CLUSTER INITIALIZED API SERVER AVAILABLE REPLICAS READY UPDATED UNAVAILABLE AGE VERSION +capi-quickstart-g2trk capi-quickstart true 3 3 3 4m7s v1.25.0 ```