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
Copy file name to clipboardExpand all lines: articles/azure-stack/azure-stack-create-and-publish-marketplace-item.md
+37-22Lines changed: 37 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,9 +12,9 @@ ms.workload: na
12
12
ms.tgt_pltfrm: na
13
13
ms.devlang: na
14
14
ms.topic: article
15
-
ms.date: 06/14/2018
15
+
ms.date: 10/03/2018
16
16
ms.author: sethm
17
-
ms.reviewer: jeffgo
17
+
ms.reviewer: avishwan
18
18
19
19
---
20
20
# Create and publish a Marketplace item
@@ -25,12 +25,15 @@ ms.reviewer: jeffgo
25
25
1.[Download](http://www.aka.ms/azurestackmarketplaceitem) the Azure Gallery Packager tool and the sample Azure Stack Marketplace item.
26
26
2. Open the sample Marketplace item and rename the **SimpleVMTemplate** folder. (Use the same name as your Marketplace item--for example, **Contoso.TodoList**.) This folder contains:
27
27
28
-
/Contoso.TodoList/
29
-
/Contoso.TodoList/Manifest.json
30
-
/Contoso.TodoList/UIDefinition.json
31
-
/Contoso.TodoList/Icons/
32
-
/Contoso.TodoList/Strings/
33
-
/Contoso.TodoList/DeploymentTemplates/
28
+
```shell
29
+
/Contoso.TodoList/
30
+
/Contoso.TodoList/Manifest.json
31
+
/Contoso.TodoList/UIDefinition.json
32
+
/Contoso.TodoList/Icons/
33
+
/Contoso.TodoList/Strings/
34
+
/Contoso.TodoList/DeploymentTemplates/
35
+
```
36
+
34
37
3.[Create an Azure Resource Manager template](../azure-resource-manager/resource-group-authoring-templates.md) or choose a template from GitHub. The Marketplace item uses this template to create a resource.
35
38
36
39
> [!Note]
@@ -48,22 +51,30 @@ ms.reviewer: jeffgo
48
51
8. In the **manifest.json** file, change **name** to the name of your Marketplace item. Also change **publisher** to your name or company.
49
52
9. Under **artifacts**, change **name** and **path** to the correct information for the Azure Resource Manager template that you included.
50
53
51
-
"artifacts": [
52
-
{
53
-
"name": "Type your template name",
54
-
"type": "Template",
55
-
"path": "DeploymentTemplates\\Type your path",
56
-
"isDefault": true
57
-
}
54
+
```json
55
+
"artifacts": [
56
+
{
57
+
"name": "Type your template name",
58
+
"type": "Template",
59
+
"path": "DeploymentTemplates\\Type your path",
60
+
"isDefault": true
61
+
}
62
+
```
63
+
58
64
10. Replace **My Marketplace Items** with a list of the categories where your Marketplace item should appear.
59
65
60
-
"categories":[
61
-
"My Marketplace Items"
62
-
],
66
+
```json
67
+
"categories":[
68
+
"My Marketplace Items"
69
+
],
70
+
```
71
+
63
72
11. For any further edits to manifest.json, refer to [Reference: Marketplace item manifest.json](#reference-marketplace-item-manifestjson).
64
73
12. To package the folders into an .azpkg file, open a command prompt and run the following command:
AzureGalleryPackager.exe package –m <path to manifest.json> -o <output location for the package>
77
+
```
67
78
68
79
> [!NOTE]
69
80
> The full path to the output package must exist. For example, if the output path is C:\MarketPlaceItem\yourpackage.azpkg, the folder C:\MarketPlaceItem must exist.
@@ -75,8 +86,10 @@ ms.reviewer: jeffgo
75
86
2. On the client virtual machine in the Microsoft Azure Stack environment, make sure that your PowerShell session is set up with your service administrator credentials. You can find instructions for how to authenticate PowerShell in Azure Stack in [Deploy a template with PowerShell](user/azure-stack-deploy-template-powershell.md).
76
87
3. When you use [PowerShell 1.3.0](azure-stack-powershell-install.md) or later, you can use the **Add-AzsGalleryItem** PowerShell cmdlet to publish the Marketplace item to Azure Stack. Prior to using PowerShell 1.3.0, use the cmdlet **Add-AzureRMGalleryitem** in place of **Add-AzsGalleryItem**. For example, when you use PowerShell 1.3.0 or later:
> The Marketplace UI may show an error after you remove an item. To fix the error, click **Settings** in the portal. Then, select **Discard modifications** under **Portal customization**.
Copy file name to clipboardExpand all lines: articles/azure-stack/azure-stack-download-azure-marketplace-item.md
+4-7Lines changed: 4 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,9 +13,9 @@ ms.workload: na
13
13
ms.tgt_pltfrm: na
14
14
ms.devlang: na
15
15
ms.topic: get-started-article
16
-
ms.date: 09/13/2018
16
+
ms.date: 10/03/2018
17
17
ms.author: sethm
18
-
ms.reviewer: jeffgo
18
+
ms.reviewer: ''
19
19
---
20
20
# Download marketplace items from Azure to Azure Stack
21
21
@@ -116,15 +116,12 @@ There are two parts to this scenario:
116
116
117
117
```
118
118
119
-
5. Import the syndication module and then launch the tool by running the following script. Replace the *destination folder path* with a location to store the files you download from the Azure Marketplace.
119
+
5. Import the syndication module and then launch the tool by running the following commands. Replace `Destination folder path` with a location to store the files you download from the Azure Marketplace.
6. When the tool runs, you are prompted to enter your Azure account credentials. Sign in to the Azure account that you have used to register Azure Stack. After the login succeeds, you should see a screen like the following image, with the list of available marketplace items.
0 commit comments