Skip to content

Commit dbbfe8e

Browse files
committed
Update Kubernetes versions to 1.33
1 parent e2db814 commit dbbfe8e

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ GINKGO_VER := $(shell go list -m -f '{{.Version}}' github.com/onsi/ginkgo/v2)
121121
GINKGO_BIN := ginkgo
122122
GINKGO := $(TOOLS_BIN_DIR)/$(GINKGO_BIN)-$(GINKGO_VER)
123123

124-
KUBECTL_VER := v1.32.2
124+
KUBECTL_VER := v1.33.6
125125
KUBECTL_BIN := kubectl
126126
KUBECTL := $(TOOLS_BIN_DIR)/$(KUBECTL_BIN)-$(KUBECTL_VER)
127127

Tiltfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ settings = {
2525
"capi_version": "v1.10.7",
2626
"caaph_version": "v0.4.1",
2727
"cert_manager_version": "v1.19.1",
28-
"kubernetes_version": "v1.32.2",
28+
"kubernetes_version": "v1.33.6",
2929
"aks_kubernetes_version": "v1.30.2",
3030
"flatcar_version": "3374.2.1",
3131
"azure_location": "eastus",

docs/book/src/developers/development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ export CONTROL_PLANE_MACHINE_COUNT=3
388388
export AZURE_CONTROL_PLANE_MACHINE_TYPE="Standard_B2s"
389389
export AZURE_NODE_MACHINE_TYPE="Standard_B2s"
390390
export WORKER_MACHINE_COUNT=2
391-
export KUBERNETES_VERSION="v1.32.2"
391+
export KUBERNETES_VERSION="v1.33.6"
392392

393393
# Identity secret.
394394
export AZURE_CLUSTER_IDENTITY_SECRET_NAME="cluster-identity-secret"

docs/book/src/managed/managedcluster.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ executing clusterctl.
4040
# Kubernetes values
4141
export CLUSTER_NAME="my-cluster"
4242
export WORKER_MACHINE_COUNT=2
43-
export KUBERNETES_VERSION="v1.32.2"
43+
export KUBERNETES_VERSION="v1.33.6"
4444

4545
# Azure values
4646
export AZURE_LOCATION="southcentralus"
@@ -357,7 +357,7 @@ spec:
357357
resourceGroupName: foo-bar
358358
sshPublicKey: ${AZURE_SSH_PUBLIC_KEY_B64:=""}
359359
subscriptionID: 00000000-0000-0000-0000-000000000000 # fake uuid
360-
version: v1.32.2
360+
version: v1.33.6
361361
identity:
362362
type: UserAssigned
363363
userAssignedIdentityResourceID: /subscriptions/00000000-0000-0000-0000-00000000/resourcegroups/<your-resource-group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/<your-managed-identity>

hack/create-dev-cluster.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export CONTROL_PLANE_MACHINE_COUNT=${CONTROL_PLANE_MACHINE_COUNT:-3}
5353
export AZURE_CONTROL_PLANE_MACHINE_TYPE="${CONTROL_PLANE_MACHINE_TYPE:-Standard_B2s}"
5454
export AZURE_NODE_MACHINE_TYPE="${NODE_MACHINE_TYPE:-Standard_B2s}"
5555
export WORKER_MACHINE_COUNT=${WORKER_MACHINE_COUNT:-2}
56-
export KUBERNETES_VERSION="${KUBERNETES_VERSION:-v1.32.2}"
56+
export KUBERNETES_VERSION="${KUBERNETES_VERSION:-v1.33.6}"
5757
export CLUSTER_TEMPLATE="${CLUSTER_TEMPLATE:-cluster-template.yaml}"
5858

5959
# identity secret settings.

templates/flavors/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ In `clusterctl` the infrastructure provider authors can provide different type o
44
or flavors; use the --flavor flag to specify which flavor to use; e.g
55

66
```shell
7-
clusterctl generate cluster my-cluster --kubernetes-version v1.32.2 \
7+
clusterctl generate cluster my-cluster --kubernetes-version v1.33.6 \
88
--flavor private > my-cluster.yaml
99
```
1010

@@ -66,7 +66,7 @@ worker-templates:
6666
AZURE_LOCATION: eastus
6767
AZURE_RESOURCE_GROUP: test-resource-group-name
6868
CONTROL_PLANE_MACHINE_COUNT: "1"
69-
KUBERNETES_VERSION: v1.32.2
69+
KUBERNETES_VERSION: v1.33.6
7070
AZURE_CONTROL_PLANE_MACHINE_TYPE: Standard_B2s
7171
WORKER_MACHINE_COUNT: "2"
7272
AZURE_NODE_MACHINE_TYPE: Standard_B2s
@@ -88,6 +88,6 @@ worker-templates:
8888
metadata:
8989
AZURE_CONTROL_PLANE_MACHINE_TYPE: Standard_B2s
9090
AZURE_LOCATION: southcentralus
91-
KUBERNETES_VERSION: v1.32.2
91+
KUBERNETES_VERSION: v1.33.6
9292
WORKER_MACHINE_COUNT: "1"
9393
```

test/e2e/config/azure-dev.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,14 +220,14 @@ providers:
220220
variables:
221221
AKS_KUBERNETES_VERSION: "latest"
222222
AKS_KUBERNETES_VERSION_UPGRADE_FROM: "latest-1"
223-
KUBERNETES_VERSION: "${KUBERNETES_VERSION:-stable-1.32}"
223+
KUBERNETES_VERSION: "${KUBERNETES_VERSION:-stable-1.33}"
224224
FLATCAR_KUBERNETES_VERSION: "${FLATCAR_KUBERNETES_VERSION:-stable-1.26}"
225-
KUBERNETES_VERSION_API_UPGRADE_FROM: "v1.31.9"
225+
KUBERNETES_VERSION_API_UPGRADE_FROM: "v1.32.10"
226226
FLATCAR_VERSION: "${FLATCAR_VERSION:-latest}"
227227
ETCD_VERSION_UPGRADE_TO: "" # Use default
228228
COREDNS_VERSION_UPGRADE_TO: "" # Use default
229-
KUBERNETES_VERSION_UPGRADE_TO: "${KUBERNETES_VERSION_UPGRADE_TO:-stable-1.32}"
230-
KUBERNETES_VERSION_UPGRADE_FROM: "${KUBERNETES_VERSION_UPGRADE_FROM:-stable-1.31}"
229+
KUBERNETES_VERSION_UPGRADE_TO: "${KUBERNETES_VERSION_UPGRADE_TO:-stable-1.33}"
230+
KUBERNETES_VERSION_UPGRADE_FROM: "${KUBERNETES_VERSION_UPGRADE_FROM:-stable-1.32}"
231231
CNI: "${PWD}/templates/addons/calico.yaml"
232232
ADDONS_PATH: "${PWD}/templates/addons"
233233
REDACT_LOG_SCRIPT: "${PWD}/hack/log/redact.sh"

0 commit comments

Comments
 (0)