You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| `subscription` | Subscription associated with your Azure Stack HCI cluster. |
68
68
| `resource-group` | Resource group for Azure Stack HCI cluster that you associate with this image. |
69
-
| `mktplaceImage` | Name of the marketplace image for Azure Stack HCI cluster. |
70
-
| `customLocationName` | Name of custom location for Azure Stack HCI cluster. |
71
-
| `customLocationID` | Resource ID of custom location for Azure Stack HCI cluster. |
69
+
| `name` | Name of the marketplace image for Azure Stack HCI cluster. |
70
+
| `customLocation` | Resource ID of custom location for Azure Stack HCI cluster. |
72
71
| `location` | Location for your Azure Stack HCI cluster. For example, this could be `eastus`. |
73
72
| `os-type` | Operating system associated with the source image. This can be Windows or Linux. |
74
73
@@ -86,12 +85,12 @@ Follow these steps to create a VM image using the Azure CLI.
86
85
87
86
### Create VM image from marketplace image
88
87
89
-
1. Set additional parameters that specify the intended VM image you would like to create. You will need to include the offer, publisher, SKU, and version for the marketplace image:
88
+
1. Set additional parameters that specify the intended VM image you would like to create. You will need to include the offer, publisher, SKU, and version for the marketplace image. Replace the parameters in \< \> with the appropriate values:
90
89
91
90
```azurecli
92
-
%publisher = “Publisher name”
93
-
$offer = “OS offer”
94
-
$sku = “Image SKU”
91
+
%publisher = \<Publisher name\>
92
+
$offer = \<OS offer\>
93
+
$sku = \<Image SKU\>
95
94
```
96
95
97
96
Use the following table to find the available marketplace images and their attribute values:
@@ -114,9 +113,9 @@ Follow these steps to create a VM image using the Azure CLI.
114
113
115
114
116
115
```azurecli
117
-
$publisher = “microsoftwindowsserver”
118
-
$offer = “windowsserver”
119
-
$sku = “2019-datacenter-gensecond”
116
+
$publisher = "microsoftwindowsserver"
117
+
$offer = "windowsserver"
118
+
$sku = "2019-datacenter-gensecond"
120
119
```
121
120
122
121
1. Create the VM image starting with a specified marketplace image:
0 commit comments