Skip to content

Commit 109b85f

Browse files
fix CI testcases for nodepool image issues (#8)
1 parent 5d5d053 commit 109b85f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

testing/pipeline/k8s-custom-pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,16 @@ stages:
5858
path: ./test/configurations/ForcedDelete.Tests.ps1
5959
- job: BuildPublishExtension
6060
pool:
61-
vmImage: 'ubuntu-20.04'
61+
vmImage: 'ubuntu-latest'
6262
displayName: "Build and Publish the Extension Artifact"
6363
variables:
6464
CLI_REPO_PATH: $(Agent.BuildDirectory)/s
6565
EXTENSION_NAME: "connectedk8s"
6666
steps:
6767
- task: UsePythonVersion@0
68-
displayName: 'Use Python 3.6'
68+
displayName: 'Use Python 3.10'
6969
inputs:
70-
versionSpec: 3.6
70+
versionSpec: 3.10
7171
- bash: |
7272
set -ev
7373
echo "Building extension ${EXTENSION_NAME}..."

testing/pipeline/templates/run-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ parameters:
55
jobs:
66
- job: ${{ parameters.jobName}}
77
pool:
8-
vmImage: 'ubuntu-20.04'
8+
vmImage: 'ubuntu-latest'
99
steps:
1010
- bash: |
1111
echo "Installing helm3"
@@ -20,9 +20,9 @@ jobs:
2020
displayName: "Setup the VM with helm3 and kubectl"
2121
2222
- task: UsePythonVersion@0
23-
displayName: 'Use Python 3.6'
23+
displayName: 'Use Python 3.10'
2424
inputs:
25-
versionSpec: 3.6
25+
versionSpec: 3.10
2626

2727
- bash: |
2828
set -ev

0 commit comments

Comments
 (0)