From 817ba4741417edb523f3b8630d1a018990c481ac Mon Sep 17 00:00:00 2001 From: Matt Boersma Date: Wed, 5 Jun 2024 09:59:22 -0600 Subject: [PATCH] Update references to unsupported k8s v1.26 --- docs/book/src/topics/managedcluster.md | 2 +- hack/create-dev-cluster.sh | 2 +- templates/flavors/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/book/src/topics/managedcluster.md b/docs/book/src/topics/managedcluster.md index 0a091a4556b..4ed76a40d7a 100644 --- a/docs/book/src/topics/managedcluster.md +++ b/docs/book/src/topics/managedcluster.md @@ -351,7 +351,7 @@ spec: resourceGroupName: foo-bar sshPublicKey: ${AZURE_SSH_PUBLIC_KEY_B64:=""} subscriptionID: 00000000-0000-0000-0000-000000000000 # fake uuid - version: v1.26.6 + version: v1.29.4 identity: type: UserAssigned userAssignedIdentityResourceID: /subscriptions/00000000-0000-0000-0000-00000000/resourcegroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/ diff --git a/hack/create-dev-cluster.sh b/hack/create-dev-cluster.sh index 454d2a24574..09512c026a3 100755 --- a/hack/create-dev-cluster.sh +++ b/hack/create-dev-cluster.sh @@ -50,7 +50,7 @@ export CONTROL_PLANE_MACHINE_COUNT=${CONTROL_PLANE_MACHINE_COUNT:-3} export AZURE_CONTROL_PLANE_MACHINE_TYPE="${CONTROL_PLANE_MACHINE_TYPE:-Standard_B2s}" export AZURE_NODE_MACHINE_TYPE="${NODE_MACHINE_TYPE:-Standard_B2s}" export WORKER_MACHINE_COUNT=${WORKER_MACHINE_COUNT:-2} -export KUBERNETES_VERSION="${KUBERNETES_VERSION:-v1.26.6}" +export KUBERNETES_VERSION="${KUBERNETES_VERSION:-v1.29.5}" export CLUSTER_TEMPLATE="${CLUSTER_TEMPLATE:-cluster-template.yaml}" # identity secret settings. diff --git a/templates/flavors/README.md b/templates/flavors/README.md index c06a0f1033b..db10f8d1b2f 100644 --- a/templates/flavors/README.md +++ b/templates/flavors/README.md @@ -4,7 +4,7 @@ In `clusterctl` the infrastructure provider authors can provide different type o or flavors; use the --flavor flag to specify which flavor to use; e.g ```shell -clusterctl generate cluster my-cluster --kubernetes-version v1.26.1 \ +clusterctl generate cluster my-cluster --kubernetes-version v1.29.5 \ --flavor private > my-cluster.yaml ```