File tree Expand file tree Collapse file tree
testing/pipeline/templates Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2727 condition : and(succeeded(), eq(variables['IS_PRIVATE_BRANCH'], 'False'))
2828 displayName : " Copy Files, Set Variables for k8s-extension"
2929- task : UsePythonVersion@0
30- displayName : ' Use Python 3.10 '
30+ displayName : ' Use Python 3.13 '
3131 inputs :
32- versionSpec : 3.10
32+ versionSpec : 3.13
3333- bash : |
3434 set -ev
3535 echo "Building extension ${EXTENSION_NAME}..."
Original file line number Diff line number Diff line change 5555
5656 - bash : |
5757 echo "Downloading the kind script"
58- curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-linux-amd64
58+ # Get the latest version tag and download
59+ LATEST_KIND_VERSION=$(curl -s https://api.github.com/repos/kubernetes-sigs/kind/releases/latest | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
60+ curl -Lo ./kind "https://kind.sigs.k8s.io/dl/${LATEST_KIND_VERSION}/kind-linux-amd64"
5961 chmod +x ./kind
6062 ./kind create cluster
6163 displayName: "Create and Start the Kind cluster"
You can’t perform that action at this time.
0 commit comments