Skip to content

Commit b6bc252

Browse files
Dipak Vvikasnav
authored andcommitted
Removed Public IP Address from iostorm, jetstress, reduced comments for bootstorm DSC (#142)
* VM boot time shown with no decimal places. Reduced logs * Removed public IP address from Jetstress VM * Removed Public IP address from IOstorm template
1 parent 95b7e12 commit b6bc252

File tree

3 files changed

+3
-45
lines changed

3 files changed

+3
-45
lines changed
-34 Bytes
Binary file not shown.

iostorm-vm-iops-latency/azuredeploy.json

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,6 @@
6767
"subnetName": "[tolower(concat('sn', resourceGroup().name))]",
6868
"subnetPrefix": "10.0.0.0/24",
6969
"storageAccountType": "Standard_LRS",
70-
"publicIPAddressType": "Dynamic",
71-
"publicIPAddressName": "[tolower(concat('ip', resourceGroup().name))]",
72-
"uniqueDnsNameForPublicIP": "[tolower(concat('dns', resourceGroup().name))]",
7370
"uniqueStorageAccountName": "[tolower(concat('sa', resourceGroup().name))]",
7471
"uniqueStorageAccountContainerName": "[tolower(concat('sc', resourceGroup().name))]",
7572
"vmAdminUsername": "vmadministrator",
@@ -102,18 +99,6 @@
10299
"accountType": "[variables('storageAccountType')]"
103100
}
104101
},
105-
{
106-
"apiVersion": "[variables('apiVersionNRP')]",
107-
"type": "Microsoft.Network/publicIPAddresses",
108-
"name": "[variables('publicIPAddressName')]",
109-
"location": "[variables('location')]",
110-
"properties": {
111-
"publicIPAllocationMethod": "[variables('publicIPAddressType')]",
112-
"dnsSettings": {
113-
"domainNameLabel": "[variables('uniqueDnsNameForPublicIP')]"
114-
}
115-
}
116-
},
117102
{
118103
"apiVersion": "[variables('apiVersionNRP')]",
119104
"type": "Microsoft.Network/networkSecurityGroups",
@@ -168,18 +153,14 @@
168153
"name": "[variables('vmNicName')]",
169154
"location": "[variables('location')]",
170155
"dependsOn": [
171-
"[concat('Microsoft.Network/publicIPAddresses/',variables('publicIPAddressName'))]",
172156
"[concat('Microsoft.Network/virtualNetworks/',variables('virtualNetworkName'))]"
173157
],
174158
"properties": {
175159
"ipConfigurations": [
176160
{
177-
"name": "ipconfigpublic",
161+
"name": "ipconfigpri",
178162
"properties": {
179163
"privateIPAllocationMethod": "Dynamic",
180-
"publicIPAddress": {
181-
"id": "[resourceId('Microsoft.Network/publicIPAddresses',variables('publicIPAddressName'))]"
182-
},
183164
"subnet": {
184165
"id": "[variables('subnetRef')]"
185166
}

jetstress-2013-exchange-loadtest/azuredeploy.json

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -83,17 +83,14 @@
8383
"apiVersion": {
8484
"compute": "2015-06-15",
8585
"storage": "2015-06-15",
86-
"network": "2015-05-01-preview"
86+
"network": "2015-06-15"
8787
},
8888
"imagePublisher": "MicrosoftWindowsServer",
8989
"imageOffer": "WindowsServer",
9090
"addressPrefix": "10.0.0.0/16",
9191
"storageAccountType": "Standard_LRS",
92-
"publicIPAddressName": "[tolower(concat('ip', resourceGroup().name))]",
93-
"publicIPAddressType": "Dynamic",
9492
"subnetPrefix": "10.0.0.0/24",
9593
"subnetName": "[concat('sn', resourceGroup().name)]",
96-
"uniqueDnsNameForPublicIP": "[tolower(concat('dns', resourceGroup().name))]",
9794
"uniqueStorageAccountName": "[tolower(concat('sa', resourceGroup().name))]",
9895
"uniqueStorageAccountContainerName": "[tolower(concat('sc', resourceGroup().name))]",
9996
"location": "[resourceGroup().location]",
@@ -130,22 +127,6 @@
130127
"accountType": "[variables('storageAccountType')]"
131128
}
132129
},
133-
{
134-
"apiVersion": "[variables('apiVersion').network]",
135-
"type": "Microsoft.Network/publicIPAddresses",
136-
"name": "[concat(variables('publicIPAddressName'),copyIndex())]",
137-
"location": "[variables('location')]",
138-
"copy": {
139-
"name": "publicIPLoop",
140-
"count": "[parameters('jetstressVMCount')]"
141-
},
142-
"properties": {
143-
"publicIPAllocationMethod": "[variables('publicIPAddressType')]",
144-
"dnsSettings": {
145-
"domainNameLabel": "[concat(variables('uniqueDnsNameForPublicIP'),copyIndex())]"
146-
}
147-
}
148-
},
149130
{
150131
"apiVersion": "[variables('apiVersion').network]",
151132
"type": "Microsoft.Network/networkSecurityGroups",
@@ -205,18 +186,14 @@
205186
"count": "[parameters('jetstressVMCount')]"
206187
},
207188
"dependsOn": [
208-
"[concat('Microsoft.Network/publicIPAddresses/',variables('publicIPAddressName'),copyIndex())]",
209189
"[concat('Microsoft.Network/virtualNetworks/',variables('virtualNetworkName'))]"
210190
],
211191
"properties": {
212192
"ipConfigurations": [
213193
{
214-
"name": "ipconfigpublic",
194+
"name": "ipconfigprivate",
215195
"properties": {
216196
"privateIPAllocationMethod": "Dynamic",
217-
"publicIPAddress": {
218-
"id": "[resourceId('Microsoft.Network/publicIPAddresses',concat(variables('publicIPAddressName'),copyIndex()))]"
219-
},
220197
"subnet": {
221198
"id": "[variables('subnetRef')]"
222199
}

0 commit comments

Comments
 (0)