Conversation
PR Title Lint Failed ❌Current Title: Your PR title doesn't follow the expected format. Please update your PR title to follow one of these patterns: Conventional Commits Format:
Guidelines:
Examples:
Please update your PR title and the lint check will run again automatically. |
There was a problem hiding this comment.
Pull request overview
Adds a new Azure DevOps pipeline definition to run targeted AgentBaker E2E scenarios intended to cover “next gen” Linux VM series.
Changes:
- Introduced
.pipelines/e2e-next-gen.yamlwith variables/tags to run VM-series-coverage E2E scenarios. - Wired the pipeline to run on
mainand on PRs affecting E2E- and provisioning-related paths.
| SKIP_TESTS_WITH_SKU_CAPACITY_ISSUE: true | ||
| E2E_GO_TEST_TIMEOUT: "75m" | ||
| E2E_LOCATION: "eastus2" | ||
| DEFAULT_VM_SIZE: "standard_d2ds_v7" |
There was a problem hiding this comment.
DEFAULT_VM_SIZE is not a recognized env var in the e2e test harness. The e2e config reads DEFAULT_VM_SKU (see e2e/config/config.go), so this pipeline will keep using the default VM size and not exercise the intended next-gen SKU. Rename this variable to DEFAULT_VM_SKU (and use the expected SKU string format) so the new pipeline actually runs on the desired VM series.
| DEFAULT_VM_SIZE: "standard_d2ds_v7" | |
| DEFAULT_VM_SKU: "Standard_D2ds_v7" |
What this PR does / why we need it:
Which issue(s) this PR fixes:
Fixes #