Skip to content

Commit 92eed41

Browse files
committed
Acrolynx
1 parent 6211322 commit 92eed41

File tree

2 files changed

+21
-21
lines changed

2 files changed

+21
-21
lines changed

articles/databox-online/azure-stack-edge-gpu-deploy-virtual-machine-powershell.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ The high-level deployment workflow of the VM deployment is as follows:
2626
1. Connect to the local Azure Resource Manager of your device.
2727
1. Identify the built-in subscription on the device.
2828
1. Bring your VM image.
29-
1. Create a resource group in the built-in subscription. The resource group will contain the VM and all the related resources.
30-
1. Create a local storage account on the device to store the VHD that will be used to create a VM image.
29+
1. Create a resource group in the built-in subscription. The resource group contains the VM and all the related resources.
30+
1. Create a local storage account on the device to store the VHD that is used to create a VM image.
3131
1. Upload a Windows/Linux source image into the storage account to create a managed disk.
3232
1. Use the managed disk to create a VM image.
3333
1. Enable compute on a device port to create a virtual switch.
@@ -188,7 +188,7 @@ Start by creating a new Azure resource group and use this as a logical container
188188
```powershell
189189
$ResourceGroupName = "<Resource group name>"
190190
```
191-
1. Create a resource group for the resources that you'll create for the VM.
191+
1. Create a resource group for the resources that you create for the VM.
192192
193193
```powershell
194194
New-AzResourceGroup -Name $ResourceGroupName -Location DBELocal
@@ -332,7 +332,7 @@ C:\AzCopy.exe cp "$VHDPath\$VHDFile" "$endPoint$ContainerName$StorageAccountSAS
332332

333333
## Create a managed disk from the VHD
334334

335-
You will now create a managed disk from the uploaded VHD.
335+
You'll now create a managed disk from the uploaded VHD.
336336

337337
### [Az](#tab/az)
338338

@@ -551,7 +551,7 @@ $aRmVN = Get-AzureRMVirtualNetwork -Name ASEVNET -ResourceGroupName ASERG
551551

552552
### Create a virtual network interface card
553553

554-
You'll create a virtual network interface card by using the virtual network subnet ID.
554+
You create a virtual network interface card by using the virtual network subnet ID.
555555

556556
### [Az](#tab/az)
557557

@@ -569,7 +569,7 @@ You'll create a virtual network interface card by using the virtual network subn
569569
$Nic = New-AzNetworkInterface -Name $NicName -ResourceGroupName $ResourceGroupName -Location DBELocal -IpConfiguration $IpConfig
570570
```
571571
572-
By default, an IP is dynamically assigned to your network interface from the network enabled for compute. Use the `-PrivateIpAddress parameter` if you are allocating a static IP to your network interface.
572+
By default, an IP is dynamically assigned to your network interface from the network enabled for compute. Use the `-PrivateIpAddress parameter` if you're allocating a static IP to your network interface.
573573
574574
Here's an example output:
575575
@@ -647,7 +647,7 @@ $ipConfig = New-AzureRmNetworkInterfaceIpConfig -Name <IP config Name> -SubnetId
647647
$Nic = New-AzureRmNetworkInterface -Name <Nic name> -ResourceGroupName <Resource group name> -Location DBELocal -IpConfiguration $ipConfig
648648
```
649649

650-
By default, an IP is dynamically assigned to your network interface from the network enabled for compute. Use the `-PrivateIpAddress parameter` if you are allocating a static IP to your network interface.
650+
By default, an IP is dynamically assigned to your network interface from the network enabled for compute. Use the `-PrivateIpAddress parameter` if you're allocating a static IP to your network interface.
651651

652652
Here's some example output:
653653

articles/databox-online/azure-stack-edge-gpu-deploy-vm-specialized-image-powershell.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The high-level workflow to deploy a VM from a specialized image is:
3939

4040
Before you can deploy a VM on your device via PowerShell, make sure that:
4141

42-
- You have access to a client that you'll use to connect to your device.
42+
- You have access to a client that you use to connect to your device.
4343
- Your client runs a [Supported OS](azure-stack-edge-gpu-system-requirements.md#supported-os-for-clients-connected-to-device).
4444
- Your client is configured to connect to the local Azure Resource Manager of your device as per the instructions in [Connect to Azure Resource Manager for your device](azure-stack-edge-gpu-connect-resource-manager.md).
4545

@@ -53,7 +53,7 @@ Verify that your client can connect to the local Azure Resource Manager.
5353
Login-AzureRMAccount -EnvironmentName <Environment Name>
5454
```
5555
56-
2. Provide the username `EdgeArmUser` and the password to connect via Azure Resource Manager. If you do not recall the password, [Reset the password for Azure Resource Manager](azure-stack-edge-gpu-set-azure-resource-manager-password.md) and use this password to sign in.
56+
2. Provide the username `EdgeArmUser` and the password to connect via Azure Resource Manager. If you don't recall the password, [Reset the password for Azure Resource Manager](azure-stack-edge-gpu-set-azure-resource-manager-password.md) and use this password to sign in.
5757
5858
## Deploy VM from specialized image
5959
@@ -65,7 +65,7 @@ Follow these steps to copy VHD to local storage account:
6565
6666
1. Copy the source VHD to a local blob storage account on your Azure Stack Edge.
6767
68-
1. Take note of the resulting URI. You'll use this URI in a later step.
68+
1. Take note of the resulting URI. You use this URI in a later step.
6969
7070
To create and access a local storage account, see the sections [Create a storage account](azure-stack-edge-gpu-deploy-virtual-machine-powershell.md#create-a-local-storage-account) through [Upload a VHD](azure-stack-edge-gpu-deploy-virtual-machine-powershell.md#upload-a-vhd) in the article: [Deploy VMs on your Azure Stack Edge device via Azure PowerShell](azure-stack-edge-gpu-deploy-virtual-machine-powershell.md).
7171
@@ -80,7 +80,7 @@ Follow these steps to create a managed disk from a VHD that you uploaded to the
8080
$DiskRG = <managed disk resource group>
8181
$DiskName = <managed disk name>
8282
```
83-
Here is an example output.
83+
Here's an example output.
8484
8585
```powershell
8686
PS C:\WINDOWS\system32> $VHDURI = "https://myasevmsa.blob.myasegpudev.wdshcsso.com/vhds/WindowsServer2016Datacenter.vhd"
@@ -96,7 +96,7 @@ Follow these steps to create a managed disk from a VHD that you uploaded to the
9696
9797
```
9898
99-
Here is an example output. The location here is set to the location of the local storage account and is always `DBELocal` for all local storage accounts on your Azure Stack Edge Pro GPU device.
99+
Here's an example output. The location here is set to the location of the local storage account and is always `DBELocal` for all local storage accounts on your Azure Stack Edge Pro GPU device.
100100
101101
```powershell
102102
PS C:\WINDOWS\system32> $DiskConfig = New-AzureRmDiskConfig -Location DBELocal -CreateOption Import -SourceUri $VHDURI
@@ -123,7 +123,7 @@ Follow these steps to create a VM from a managed disk:
123123
>[!NOTE]
124124
> The `PrivateIP` parameter is optional. Use this parameter to assign a static IP else the default is a dynamic IP using DHCP.
125125
126-
Here is an example output. In this example, the same resource group is specified for all the VM resources though you can create and specify separate resource groups for the resources if needed.
126+
Here's an example output. In this example, the same resource group is specified for all the VM resources though you can create and specify separate resource groups for the resources if needed.
127127
128128
```powershell
129129
PS C:\WINDOWS\system32> $NicRG = "myasevm1rg"
@@ -137,15 +137,15 @@ Follow these steps to create a VM from a managed disk:
137137
138138
1. Get the virtual network information and create a new network interface.
139139
140-
This sample assumes you are creating a single network interface on the default virtual network `ASEVNET` that is associated with the default resource group `ASERG`. If needed, you could specify an alternate virtual network, or create multiple network interfaces. For more information, see [Add a network interface to a VM via the Azure portal](azure-stack-edge-gpu-manage-virtual-machine-network-interfaces-portal.md).
140+
This sample assumes you're creating a single network interface on the default virtual network `ASEVNET` that is associated with the default resource group `ASERG`. If needed, you could specify an alternate virtual network, or create multiple network interfaces. For more information, see [Add a network interface to a VM via the Azure portal](azure-stack-edge-gpu-manage-virtual-machine-network-interfaces-portal.md).
141141
142142
```powershell
143143
$armVN = Get-AzureRMVirtualNetwork -Name ASEVNET -ResourceGroupName ASERG
144144
$ipConfig = New-AzureRmNetworkInterfaceIpConfig -Name $IPConfigName -SubnetId $armVN.Subnets[0].Id [-PrivateIpAddress $PrivateIP]
145145
$nic = New-AzureRmNetworkInterface -Name $NicName -ResourceGroupName $NicRG -Location DBELocal -IpConfiguration $ipConfig
146146
```
147147
148-
Here is an example output.
148+
Here's an example output.
149149
150150
```powershell
151151
PS C:\WINDOWS\system32> $armVN = Get-AzureRMVirtualNetwork -Name ASEVNET -ResourceGroupName ASERG
@@ -172,15 +172,15 @@ Follow these steps to create a VM from a managed disk:
172172
```powershell
173173
$vm = Set-AzureRmVMOSDisk -VM $vm -ManagedDiskId $disk.Id -StorageAccountType StandardLRS -CreateOption Attach –[Windows/Linux]
174174
```
175-
The last flag in this command will be either `-Windows` or `-Linux` depending on which OS you are using for your VM.
175+
The last flag in this command will be either `-Windows` or `-Linux` depending on which OS you're using for your VM.
176176
177177
1. Create the VM.
178178
179179
```powershell
180180
New-AzureRmVM -ResourceGroupName $VMRG -Location DBELocal -VM $vm
181181
```
182182
183-
Here is an example output.
183+
Here's an example output.
184184
185185
```powershell
186186
PS C:\WINDOWS\system32> $vmConfig = New-AzureRmVMConfig -VMName $VMName -VMSize $VMSize
@@ -197,14 +197,14 @@ Follow these steps to create a VM from a managed disk:
197197
198198
## Delete VM and resources
199199
200-
This article used only one resource group to create all the VM resource. Deleting that resource group will delete the VM and all the associated resources.
200+
This article used only one resource group to create all the VM resource. Deleting that resource group deletes the VM and all the associated resources.
201201
202202
1. First view all the resources created under the resource group.
203203
204204
```powershell
205205
Get-AzureRmResource -ResourceGroupName <Resource group name>
206206
```
207-
Here is an example output.
207+
Here's an example output.
208208
209209
```powershell
210210
PS C:\WINDOWS\system32> Get-AzureRmResource -ResourceGroupName myasevm1rg
@@ -246,7 +246,7 @@ This article used only one resource group to create all the VM resource. Deletin
246246
```powershell
247247
Remove-AzureRmResourceGroup -ResourceGroupName <Resource group name>
248248
```
249-
Here is an example output.
249+
Here's an example output.
250250
251251
```powershell
252252
PS C:\WINDOWS\system32> Remove-AzureRmResourceGroup -ResourceGroupName myasevm1rg
@@ -263,7 +263,7 @@ This article used only one resource group to create all the VM resource. Deletin
263263
```powershell
264264
Get-AzureRmResourceGroup
265265
```
266-
Here is an example output.
266+
Here's an example output.
267267
268268
```powershell
269269
PS C:\WINDOWS\system32> Get-AzureRmResourceGroup

0 commit comments

Comments
 (0)