You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**⚠️ Warning**: If you don't change the resource group name when creating a new setup, it will overwrite/conflict with the existing default setup used by scheduled runs!
49
-
50
47
## Pipeline Parameters
51
48
49
+
Parameters are organized by usage:
50
+
51
+
### Common Parameters (Always Relevant)
52
+
| Parameter | Default | Description |
53
+
|-----------|---------|-------------|
54
+
|`location`|`centraluseuap`| Azure region for resources. Auto-generates RG name: `sv2-long-run-<location>`. |
55
+
|`runSetupStages`|`false`| Set to `true` to create new infrastructure. `false` for scheduled test runs. |
|`serviceConnection`|`Azure Container Networking...`| Azure DevOps service connection. |
58
+
59
+
### Setup-Only Parameters (Only Used When runSetupStages=true)
60
+
52
61
| Parameter | Default | Description |
53
62
|-----------|---------|-------------|
54
-
|`subscriptionId`|`37deca37-c375-4a14-b90a-043849bd2bf1`| Azure subscription for deployment. |
55
-
|`location`|`centraluseuap`| Azure region for resources. |
56
-
|`resourceGroupName`|`sv2-long-run-<location>`| Static RG name for tests. Dynamically includes region (e.g., `sv2-long-run-centraluseuap`). **MUST be changed to unique value when creating new setup!**|
57
-
|`runSetupStages`|`false`| Set to `true` to create/recreate AKS clusters and networking. **WARNING: Always set unique `resourceGroupName` when true!**|
63
+
|`resourceGroupName`|`""` (empty) |**Leave empty** to auto-generate `sv2-long-run-<location>`. Provide custom name only for parallel setups (e.g., `sv2-long-run-eastus-dev`). |
58
64
|`vmSkuDefault`|`Standard_D4s_v3`| VM SKU for low-NIC node pool (1 NIC). |
59
65
|`vmSkuHighNIC`|`Standard_D16s_v3`| VM SKU for high-NIC node pool (7 NICs). |
60
-
|`serviceConnection`|`Azure Container Networking - Standalone Test Service Connection`| Azure DevOps service connection. |
66
+
67
+
**Note**: Setup-only parameters are ignored when `runSetupStages=false` (scheduled runs).
61
68
62
69
## How It Works
63
70
@@ -115,22 +122,21 @@ Alternatively, manually trigger with the new location or override `resourceGroup
115
122
116
123
**Steps**:
117
124
1. Go to Pipeline → Run pipeline
118
-
2. **Change `resourceGroupName`** to a unique value:
125
+
2. Set `runSetupStages` = `true`
126
+
3. **Set `resourceGroupName`** to a unique value:
119
127
- For different region: `sv2-long-run-eastus`
120
-
- For parallel test: `sv2-long-run-centraluseuap-v2`
121
-
- For experimental: `sv2-long-run-centraluseuap-experimental`
122
-
3. Set `runSetupStages` = `true`
123
-
4. Optionally change `location` parameter
128
+
- For parallel test: `sv2-long-run-centraluseuap-dev`
129
+
- For experimental: `sv2-long-run-centraluseuap-v2`
130
+
- Or leave empty to use auto-generated `sv2-long-run-<location>`
0 commit comments