From 6e03e2b7ea90ce05b563a88b919a0cd61b8660ea Mon Sep 17 00:00:00 2001 From: Evan Baker Date: Tue, 17 Sep 2024 14:59:35 -0500 Subject: [PATCH] fix: update default k8s ver to 1.30 (#2924) Signed-off-by: Evan Baker --- .pipelines/pipeline.yaml | 2 +- hack/aks/Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.pipelines/pipeline.yaml b/.pipelines/pipeline.yaml index e93f98b677..6273067b61 100644 --- a/.pipelines/pipeline.yaml +++ b/.pipelines/pipeline.yaml @@ -351,7 +351,7 @@ stages: clusterType: vnetscale-swift-byocni-up clusterName: "vscaleswifte2e" vmSize: Standard_B2ms - k8sVersion: "1.28" + k8sVersion: "1.30" dependsOn: "containerize" # CNIv1 E2E tests diff --git a/hack/aks/Makefile b/hack/aks/Makefile index f46b5d6579..9efa437a41 100644 --- a/hack/aks/Makefile +++ b/hack/aks/Makefile @@ -9,7 +9,7 @@ AZCLI ?= docker run --rm -v $(AZCFG):/root/.azure -v $(KUBECFG):/root/.kube -v # overrideable defaults AUTOUPGRADE ?= patch -K8S_VER ?= 1.28 +K8S_VER ?= 1.30 NODE_COUNT ?= 2 NODE_COUNT_WIN ?= $(NODE_COUNT) NODEUPGRADE ?= NodeImage @@ -237,7 +237,7 @@ swiftv2-multitenancy-cluster-up: rg-up $(AZCLI) aks create -n $(CLUSTER) -g $(GROUP) -l $(REGION) \ --network-plugin azure \ --network-plugin-mode overlay \ - --kubernetes-version 1.28 \ + --kubernetes-version $(K8S_VER) \ --nodepool-name "mtapool" \ --node-vm-size $(VM_SIZE) \ --node-count 2 \