Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions testing/pipeline/k8s-custom-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ stages:
EXTENSION_NAME: "connectedk8s"
steps:
- 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}..."
Expand Down
8 changes: 5 additions & 3 deletions testing/pipeline/templates/run-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
displayName: "Setup the VM with helm3 and kubectl"

- task: UsePythonVersion@0
displayName: 'Use Python 3.10'
displayName: 'Use Python 3.13'
inputs:
versionSpec: 3.10
versionSpec: 3.13

- bash: |
set -ev
Expand Down Expand Up @@ -68,7 +68,9 @@ jobs:

- bash : |
echo "Downloading the kind script"
curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.24.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"
Expand Down
Loading