Skip to content

Commit 999838a

Browse files
committed
Adding slashes in front of carats to fix markdown
1 parent 0ae5b68 commit 999838a

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

articles/virtual-machines/enable-nvme-remote-faqs.yml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,15 @@ sections:
5555
- Set the destination *discontrollertype* of the VM as NVMe.
5656
- Use the following PowerShell script to do so: [SAP-on-Azure-Scripts-and-Utilities/NVMe-Preflight-Check at main · Azure/SAP-on-Azure-Scripts-and-Utilities · GitHub](https://github.com/Azure/SAP-on-Azure-Scripts-and-Utilities/tree/main/NVMe-Preflight-Check)
5757
```PowerShell
58-
azure-nvme-VM-update.ps1 [-subscription_id] <String> [-resource_group_name] <String> [-vm_name] <String> [[-disk_controller_change_to] <String>] [-vm_size_change_to] <String> [[-start_vm_after_update] <Boolean>] [[-write_logfile] <Boolean>]
58+
azure-nvme-VM-update.ps1 [-subscription_id] \<String\> [-resource_group_name] \<String\> [-vm_name] \<String\> [[-disk_controller_change_to] \<String>] [-vm_size_change_to] \<String\> [[-start_vm_after_update] \<Boolean>] [[-write_logfile] \<Boolean>]
5959
```
6060
- question: |
6161
How can I check if a given image is tagged as NVMe?
6262
answer: |
6363
To check if a given image is tagged as NVMe, please use the following command:
64-
az vm image show --urn URN_OF_IMAGE
64+
```
65+
az vm image show --urn URN_OF_IMAGE
66+
```
6567
- question: |
6668
How do I tag an image that supports NVMe for remote disk?
6769
answer: |
@@ -70,23 +72,26 @@ sections:
7072
- AzCopy Reference:
7173
[https://docs.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-v10]
7274
```
73-
azcopy copy <local path to your vhd> <container in your storage account>
75+
azcopy copy \<local path to your vhd\> \<container in your storage account>
7476
```
7577
2. Create your image gallery either using powershell/portal/cli:
7678
[https://docs.microsoft.com/en-us/azure/virtual-machines/create-gallery]
7779
3. Create the image definition:
7880
[https://docs.microsoft.com/en-us/azure/virtual-machines/image-version]
7981
**Please make sure to include --feature DiskControllerTypes=SCSI,NVMe**
8082
81-
CLI Example: 
82-
az sig image-definition create --resource-group <resourceGroupName> --gallery-name <galleryName> --gallery-image-definition <imageName> --publisher <publisher> --offer <offerName> --sku <skuName> --os-type <osType> --os-state <osState> --feature DiskControllerTypes=SCSI,NVMe
83-
83+
CLI Example:
84+
```
85+
az sig image-definition create --resource-group \<resourceGroupName\> --gallery-name \<galleryName\> --gallery-image-definition \<imageName\> --publisher \<publisher\> --offer \<offerName\> --sku \<skuName\> --os-type \<osType\> --os-state \<osState\> --feature DiskControllerTypes=SCSI,NVMe
86+
```
87+
8488
4. Create the image version under the NVMe-tagged gallery with the NVMe-supported vhd: 
8589
[https://docs.microsoft.com/en-us/azure/virtual-machines/image-version]
8690
8791
CLI Example:
88-
az sig image-version create --resource-group <resourceGroupName> --gallery-name <galleryName> --gallery-image-definition <imageName> --gallery-image-version <version> --target-regions <region1> <region2> --replica-count <replicaCount> --os-vhd-uri <NVMe-supported vhd uri> --os-vhd-storage-account <storageAccount>
89-
92+
```
93+
az sig image-version create --resource-group \<resourceGroupName\> --gallery-name \<galleryName\> --gallery-image-definition \<imageName\> --gallery-image-version \<version\> --target-regions \<region1\> \<region2\> --replica-count \<replicaCount\> --os-vhd-uri \<NVMe-supported vhd uri\> --os-vhd-storage-account \<storageAccount>
94+
```
9095
- question: |
9196
How do I configure an ARM template for my initial VM launch?
9297
answer: |

0 commit comments

Comments
 (0)