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
This commit is contained in:
Dipak V 2016-09-14 21:22:57 -07:00 коммит произвёл vikasnav
Родитель 95b7e12aec
Коммит b6bc252537
3 изменённых файлов: 3 добавлений и 45 удалений

Двоичные данные
bootstorm-vm-boot-time/VMBootAll.zip

Двоичный файл не отображается.

Просмотреть файл

@ -67,9 +67,6 @@
"subnetName": "[tolower(concat('sn', resourceGroup().name))]",
"subnetPrefix": "10.0.0.0/24",
"storageAccountType": "Standard_LRS",
"publicIPAddressType": "Dynamic",
"publicIPAddressName": "[tolower(concat('ip', resourceGroup().name))]",
"uniqueDnsNameForPublicIP": "[tolower(concat('dns', resourceGroup().name))]",
"uniqueStorageAccountName": "[tolower(concat('sa', resourceGroup().name))]",
"uniqueStorageAccountContainerName": "[tolower(concat('sc', resourceGroup().name))]",
"vmAdminUsername": "vmadministrator",
@ -102,18 +99,6 @@
"accountType": "[variables('storageAccountType')]"
}
},
{
"apiVersion": "[variables('apiVersionNRP')]",
"type": "Microsoft.Network/publicIPAddresses",
"name": "[variables('publicIPAddressName')]",
"location": "[variables('location')]",
"properties": {
"publicIPAllocationMethod": "[variables('publicIPAddressType')]",
"dnsSettings": {
"domainNameLabel": "[variables('uniqueDnsNameForPublicIP')]"
}
}
},
{
"apiVersion": "[variables('apiVersionNRP')]",
"type": "Microsoft.Network/networkSecurityGroups",
@ -168,18 +153,14 @@
"name": "[variables('vmNicName')]",
"location": "[variables('location')]",
"dependsOn": [
"[concat('Microsoft.Network/publicIPAddresses/',variables('publicIPAddressName'))]",
"[concat('Microsoft.Network/virtualNetworks/',variables('virtualNetworkName'))]"
],
"properties": {
"ipConfigurations": [
{
"name": "ipconfigpublic",
"name": "ipconfigpri",
"properties": {
"privateIPAllocationMethod": "Dynamic",
"publicIPAddress": {
"id": "[resourceId('Microsoft.Network/publicIPAddresses',variables('publicIPAddressName'))]"
},
"subnet": {
"id": "[variables('subnetRef')]"
}

Просмотреть файл

@ -83,17 +83,14 @@
"apiVersion": {
"compute": "2015-06-15",
"storage": "2015-06-15",
"network": "2015-05-01-preview"
"network": "2015-06-15"
},
"imagePublisher": "MicrosoftWindowsServer",
"imageOffer": "WindowsServer",
"addressPrefix": "10.0.0.0/16",
"storageAccountType": "Standard_LRS",
"publicIPAddressName": "[tolower(concat('ip', resourceGroup().name))]",
"publicIPAddressType": "Dynamic",
"subnetPrefix": "10.0.0.0/24",
"subnetName": "[concat('sn', resourceGroup().name)]",
"uniqueDnsNameForPublicIP": "[tolower(concat('dns', resourceGroup().name))]",
"uniqueStorageAccountName": "[tolower(concat('sa', resourceGroup().name))]",
"uniqueStorageAccountContainerName": "[tolower(concat('sc', resourceGroup().name))]",
"location": "[resourceGroup().location]",
@ -130,22 +127,6 @@
"accountType": "[variables('storageAccountType')]"
}
},
{
"apiVersion": "[variables('apiVersion').network]",
"type": "Microsoft.Network/publicIPAddresses",
"name": "[concat(variables('publicIPAddressName'),copyIndex())]",
"location": "[variables('location')]",
"copy": {
"name": "publicIPLoop",
"count": "[parameters('jetstressVMCount')]"
},
"properties": {
"publicIPAllocationMethod": "[variables('publicIPAddressType')]",
"dnsSettings": {
"domainNameLabel": "[concat(variables('uniqueDnsNameForPublicIP'),copyIndex())]"
}
}
},
{
"apiVersion": "[variables('apiVersion').network]",
"type": "Microsoft.Network/networkSecurityGroups",
@ -205,18 +186,14 @@
"count": "[parameters('jetstressVMCount')]"
},
"dependsOn": [
"[concat('Microsoft.Network/publicIPAddresses/',variables('publicIPAddressName'),copyIndex())]",
"[concat('Microsoft.Network/virtualNetworks/',variables('virtualNetworkName'))]"
],
"properties": {
"ipConfigurations": [
{
"name": "ipconfigpublic",
"name": "ipconfigprivate",
"properties": {
"privateIPAllocationMethod": "Dynamic",
"publicIPAddress": {
"id": "[resourceId('Microsoft.Network/publicIPAddresses',concat(variables('publicIPAddressName'),copyIndex()))]"
},
"subnet": {
"id": "[variables('subnetRef')]"
}