Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
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
31 changes: 31 additions & 0 deletions .pipelines/multitenancy/swiftv2-manifold-e2e.stages.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
parameters:
name: ""
dependsOn: ""

stages:
- stage: manifolde2e
displayName: E2E - AKS Swiftv2 Manifold
variables:
TAG: $[ stageDependencies.setup.env.outputs['EnvironmentalVariables.Tag'] ]
IMAGE_REPO_PATH: $[ stageDependencies.setup.env.outputs['EnvironmentalVariables.imageRepositoryPath'] ]
dependsOn:
- ${{ parameters.dependsOn }}
- setup
jobs:
- job: ${{ parameters.name }}
displayName: AKS Swiftv2 Multitenancy Manifold E2E Test Suite- (${{ parameters.name }})
pool:
name: $(BUILD_POOL_NAME_DEFAULT)
isCustom: true
type: linux
steps:
- task: TriggerBuild@3
inputs:
buildDefinition: '391699'
templateParameters: 'useAcnPublic: true, cnscniversion: $(TAG), cnscniversionwindows: $(TAG), cnscniImagePrefix: $(IMAGE_REPO_PATH)/'
useSameBranch: false
queueBuildForUserThatTriggeredBuild: true
branchToUse: 'refs/heads/sharifna/runner/release-gate'
Copy link
Contributor Author

@sharifnasser sharifnasser Nov 20, 2025

Choose a reason for hiding this comment

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

Need to change this to master branch once Runners pipeline changes are merged.

waitForQueuedBuildsToFinish: true
authenticationMethod: 'OAuth Token'

7 changes: 6 additions & 1 deletion .pipelines/run-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,12 @@ stages:
vmSize: Standard_B2ms
dependsOn: manifests
scaleup: 50


# AKS Swiftv2 Singularity E2E tests
- template: multitenancy/swiftv2-manifold-e2e.stages.yaml
parameters:
name: "swiftv2_manifold_e2e"
dependsOn: manifests

- stage: delete
displayName: Delete Clusters
Expand Down
Loading