From f6ebe6bdc0acb3417ff50dd41fe51171babebbed Mon Sep 17 00:00:00 2001 From: Bavneet Singh Date: Wed, 30 Jul 2025 14:59:07 -0700 Subject: [PATCH 1/2] update python version to 3.13 --- testing/pipeline/templates/build-extension.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/pipeline/templates/build-extension.yml b/testing/pipeline/templates/build-extension.yml index 733b8c470df..af92bd43e27 100644 --- a/testing/pipeline/templates/build-extension.yml +++ b/testing/pipeline/templates/build-extension.yml @@ -27,9 +27,9 @@ steps: condition: and(succeeded(), eq(variables['IS_PRIVATE_BRANCH'], 'False')) displayName: "Copy Files, Set Variables for k8s-extension" - task: UsePythonVersion@0 - displayName: 'Use Python 3.10' + displayName: 'Use Python 3.13' inputs: - versionSpec: 3.10 + versionSpec: 3.13 - bash: | set -ev echo "Building extension ${EXTENSION_NAME}..." From f68b82721811ac37933c740423cc661ec2ff006c Mon Sep 17 00:00:00 2001 From: Bavneet Singh Date: Wed, 30 Jul 2025 15:16:57 -0700 Subject: [PATCH 2/2] update kind version --- testing/pipeline/templates/run-test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/testing/pipeline/templates/run-test.yml b/testing/pipeline/templates/run-test.yml index fa8ced33e9d..6a3feed6bfb 100644 --- a/testing/pipeline/templates/run-test.yml +++ b/testing/pipeline/templates/run-test.yml @@ -55,7 +55,9 @@ jobs: - bash : | echo "Downloading the kind script" - curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-linux-amd64 + # Get the latest version tag and download + LATEST_KIND_VERSION=$(curl -s https://api.github.com/repos/kubernetes-sigs/kind/releases/latest | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/') + curl -Lo ./kind "https://kind.sigs.k8s.io/dl/${LATEST_KIND_VERSION}/kind-linux-amd64" chmod +x ./kind ./kind create cluster displayName: "Create and Start the Kind cluster"