Skip to content
Draft
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
45 changes: 45 additions & 0 deletions .pipelines/e2e-next-gen.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: $(Date:yyyyMMdd)$(Rev:.r)
variables:
TAGS_TO_RUN: "vmSeriesCoverageTest=true"
TAGS_TO_SKIP: "os=windows"
SKIP_E2E_TESTS: false
SKIP_TESTS_WITH_SKU_CAPACITY_ISSUE: true
E2E_GO_TEST_TIMEOUT: "75m"
E2E_LOCATION: "eastus2"
DEFAULT_VM_SIZE: "standard_d2ds_v7"
Copy link

Copilot AI Mar 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.

Suggested change
DEFAULT_VM_SIZE: "standard_d2ds_v7"
DEFAULT_VM_SKU: "Standard_D2ds_v7"

Copilot uses AI. Check for mistakes.
trigger:
branches:
include:
- main
pr:
branches:
include:
- official/*
- windows/*
- main
paths:
include:
- .pipelines/e2e.yaml
- .pipelines/e2e-next-gen.yaml
- .pipelines/templates/e2e-template.yaml
- .pipelines/scripts/e2e_run.sh
- e2e
- parts/linux
- parts/common/components.json
- pkg/agent
- go.mod
- go.sum
exclude:
- pkg/agent/datamodel/sig_config*.go # SIG config changes
- pkg/agent/datamodel/*.json # SIG version changes
- pkg/agent/testdata/AKSWindows* # Windows test data
- staging/cse/windows/README
- /**/*.md
- e2e/scenario_win_test.go

jobs:
- template: ./templates/e2e-template.yaml
parameters:
name: Linux Next Gen VM Series Tests
IgnoreScenariosWithMissingVhd: false

Loading