-
Notifications
You must be signed in to change notification settings - Fork 261
Add SwiftV2 long-running pipeline with scheduled tests #4142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
sivakami-projects
wants to merge
23
commits into
master
Choose a base branch
from
sv2-long-running-pipeline-stage2
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+3,186
−242
Open
Changes from 4 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
896ff1f
Add SwiftV2 long-running pipeline with scheduled tests
873c05e
Update readme file.
3395415
fix syntax for pe test.
b34b332
Create NSG rules with unique priority.
e9f50e6
Update go.mod
sivakami-projects 8364bf5
Update test/integration/swiftv2/longRunningCluster/datapath_create_te…
sivakami-projects 1d2ed59
Update test/integration/swiftv2/longRunningCluster/datapath_delete_te…
sivakami-projects efbfb02
Update test/integration/swiftv2/longRunningCluster/datapath_connectiv…
sivakami-projects 04a22a0
Update test/integration/swiftv2/longRunningCluster/datapath_delete_te…
sivakami-projects 56fbeb2
Error handling for private endpoint tests.
4d29aec
Private endpoint tests.
a1baf08
update private endpoint test.
0945c2c
update pod.yaml
7df1c79
Check if mtpnc is cleaned up after pods are deleted.
b37b033
Update vnet names.
2672caa
add container readiness check.
9d27d43
update pod.yaml
95ff010
Update pod.yaml
c1bd2e6
Update connectivity test.
7bdf1b0
Update netcat curl test.
a27aa52
Enable delete pods.
4f32773
Remove test changes.
feb46e4
remove test changes for storage accounts.
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,42 +1,47 @@ | ||
| trigger: none | ||
| pr: none | ||
|
|
||
| # Schedule: Run every 1 hour | ||
| schedules: | ||
| - cron: "0 */3 * * *" # Every 3 hours at minute 0 | ||
| displayName: "Run tests every 3 hours" | ||
| branches: | ||
| include: | ||
| - sv2-long-running-pipeline-stage2 | ||
| always: true # Run even if there are no code changes | ||
|
|
||
| parameters: | ||
| - name: subscriptionId | ||
| displayName: "Azure Subscription ID" | ||
| type: string | ||
| default: "37deca37-c375-4a14-b90a-043849bd2bf1" | ||
|
|
||
| - name: serviceConnection | ||
| displayName: "Azure Service Connection" | ||
| type: string | ||
| default: "Azure Container Networking - Standalone Test Service Connection" | ||
|
|
||
| - name: location | ||
| displayName: "Deployment Region" | ||
| type: string | ||
| default: "centraluseuap" | ||
|
|
||
| - name: resourceGroupName | ||
| displayName: "Resource Group Name" | ||
| type: string | ||
| default: "long-run-$(Build.BuildId)" | ||
|
|
||
| - name: vmSkuDefault | ||
| displayName: "VM SKU for Default Node Pool" | ||
| type: string | ||
| default: "Standard_D2s_v3" | ||
|
|
||
| - name: vmSkuHighNIC | ||
| displayName: "VM SKU for High NIC Node Pool" | ||
| type: string | ||
| default: "Standard_D16s_v3" | ||
| - name: runSetupStages | ||
| displayName: "Create New Infrastructure Setup" | ||
| type: boolean | ||
| default: false | ||
|
|
||
| - name: serviceConnection | ||
| displayName: "Azure Service Connection" | ||
| # Setup-only parameters (only used when runSetupStages=true) | ||
| - name: resourceGroupName | ||
| displayName: "Resource Group Name used when Create new Infrastructure Setup is selected" | ||
| type: string | ||
| default: "Azure Container Networking - Standalone Test Service Connection" | ||
| default: "sv2-long-run-$(Build.BuildId)" | ||
|
|
||
| extends: | ||
| template: template/long-running-pipeline-template.yaml | ||
| parameters: | ||
| subscriptionId: ${{ parameters.subscriptionId }} | ||
| location: ${{ parameters.location }} | ||
| resourceGroupName: ${{ parameters.resourceGroupName }} | ||
| vmSkuDefault: ${{ parameters.vmSkuDefault }} | ||
| vmSkuHighNIC: ${{ parameters.vmSkuHighNIC }} | ||
| serviceConnection: ${{ parameters.serviceConnection }} | ||
| runSetupStages: ${{ parameters.runSetupStages }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.