Skip to content

Commit

Permalink
use westus2 for swarm tests (Azure#3956)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackfrancis authored Oct 4, 2018
1 parent 6dd1876 commit 962c5a0
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 22 deletions.
4 changes: 2 additions & 2 deletions examples/disks-managed/swarm-preAttachedDisks-vmss.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
"agentPoolProfiles": [
{
"name": "agentpool1",
"count": 3,
"count": 1,
"vmSize": "Standard_D2_v2",
"availabilityProfile": "VirtualMachineScaleSets",
"storageProfile": "ManagedDisks",
"diskSizesGB": [128, 128, 128, 128]
},
{
"name": "agentpublic",
"count": 3,
"count": 1,
"dnsPrefix": "",
"vmSize": "Standard_D2_v2",
"availabilityProfile": "VirtualMachineScaleSets",
Expand Down
4 changes: 2 additions & 2 deletions examples/disks-managed/swarmmode-vmas.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
"agentPoolProfiles": [
{
"name": "agentpool1",
"count": 3,
"count": 1,
"vmSize": "Standard_D2_v2",
"OSDiskSizeGB": 200,
"availabilityProfile": "AvailabilitySet",
"storageProfile": "ManagedDisks"
},
{
"name": "agentpublic",
"count": 3,
"count": 1,
"vmSize": "Standard_D2_v2",
"OSDiskSizeGB": 200,
"availabilityProfile": "AvailabilitySet",
Expand Down
4 changes: 2 additions & 2 deletions examples/disks-managed/swarmmode-vmss.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
"agentPoolProfiles": [
{
"name": "agentpool1",
"count": 3,
"count": 1,
"vmSize": "Standard_D2_v2",
"availabilityProfile": "VirtualMachineScaleSets",
"storageProfile": "ManagedDisks"
},
{
"name": "agentpublic",
"count": 3,
"count": 1,
"vmSize": "Standard_D2_v2",
"availabilityProfile": "VirtualMachineScaleSets",
"storageProfile": "ManagedDisks",
Expand Down
6 changes: 3 additions & 3 deletions examples/disks-storageaccount/swarmmode.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
"orchestratorType": "SwarmMode"
},
"masterProfile": {
"count": 3,
"count": 1,
"dnsPrefix": "",
"vmSize": "Standard_D2_v2",
"OSDiskSizeGB": 200
},
"agentPoolProfiles": [
{
"name": "agent128",
"count": 3,
"count": 1,
"vmSize": "Standard_D2_v2",
"OSDiskSizeGB": 200,
"availabilityProfile": "AvailabilitySet",
Expand All @@ -22,7 +22,7 @@
},
{
"name": "agentpublic",
"count": 3,
"count": 1,
"vmSize": "Standard_D2_v2",
"dnsPrefix": "",
"availabilityProfile": "AvailabilitySet",
Expand Down
2 changes: 1 addition & 1 deletion examples/swarm.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"agentPoolProfiles": [
{
"name": "agentpublic",
"count": 3,
"count": 1,
"vmSize": "Standard_D2_v2",
"dnsPrefix": "",
"ports": [
Expand Down
4 changes: 2 additions & 2 deletions examples/v20170131/swarmmode.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
"orchestratorType": "SwarmMode"
},
"masterProfile": {
"count": 3,
"count": 1,
"dnsPrefix": "",
"vmSize": "Standard_D2_v2"
},
"agentPoolProfiles": [
{
"name": "agentpublic",
"count": 3,
"count": 1,
"vmSize": "Standard_D2_v2",
"dnsPrefix": "",
"ports": [
Expand Down
6 changes: 3 additions & 3 deletions examples/vnet/swarmmodevnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"orchestratorType": "SwarmMode"
},
"masterProfile": {
"count": 3,
"count": 1,
"dnsPrefix": "",
"vmSize": "Standard_D2_v2",
"vnetSubnetId": "/subscriptions/SUB_ID/resourceGroups/RG_NAME/providers/Microsoft.Network/virtualNetworks/VNET_NAME/subnets/MASTER_SUBNET_NAME",
Expand All @@ -14,13 +14,13 @@
"agentPoolProfiles": [
{
"name": "agentprivate",
"count": 3,
"count": 1,
"vmSize": "Standard_D2_v2",
"vnetSubnetId": "/subscriptions/SUB_ID/resourceGroups/RG_NAME/providers/Microsoft.Network/virtualNetworks/VNET_NAME/subnets/AGENT_SUBNET_NAME"
},
{
"name": "agentpublic",
"count": 3,
"count": 1,
"vmSize": "Standard_D2_v2",
"dnsPrefix": "",
"vnetSubnetId": "/subscriptions/SUB_ID/resourceGroups/RG_NAME/providers/Microsoft.Network/virtualNetworks/VNET_NAME/subnets/AGENT_SUBNET_NAME",
Expand Down
6 changes: 4 additions & 2 deletions test/e2e/swarm-deployments.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{
"deployments": [
{
"cluster_definition": "swarm.json"
"cluster_definition": "swarm.json",
"location": "westus2"
},
{
"cluster_definition": "disks-managed/swarm-preAttachedDisks-vmss.json"
"cluster_definition": "disks-managed/swarm-preAttachedDisks-vmss.json",
"location": "westus2"
}
]
}
15 changes: 10 additions & 5 deletions test/e2e/swarmmode-deployments.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
{
"deployments": [
{
"cluster_definition": "disks-managed/swarmmode-vmas.json"
"cluster_definition": "disks-managed/swarmmode-vmas.json",
"location": "westus2"
},
{
"cluster_definition": "disks-managed/swarmmode-vmss.json"
"cluster_definition": "disks-managed/swarmmode-vmss.json",
"location": "westus2"
},
{
"cluster_definition": "disks-storageaccount/swarmmode.json"
"cluster_definition": "disks-storageaccount/swarmmode.json",
"location": "westus2"
},
{
"cluster_definition": "v20170131/swarmmode.json"
"cluster_definition": "v20170131/swarmmode.json",
"location": "westus2"
},
{
"cluster_definition": "vnet/swarmmodevnet.json"
"cluster_definition": "vnet/swarmmodevnet.json",
"location": "westus2"
}
]
}

0 comments on commit 962c5a0

Please sign in to comment.