Skip to content

Commit 27ad8f6

Browse files
authored
Merge pull request #49900 from rwike77/quickstart
Adding deploy command for powershell
2 parents 5727bbc + ca881f1 commit 27ad8f6

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

articles/service-fabric-mesh/service-fabric-mesh-quickstart-deploy-container.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services: service-fabric-mesh
77
keywords: Don’t add or edit keywords without consulting your SEO champ.
88
author: rwike77
99
ms.author: ryanwi
10-
ms.date: 07/12/2018
10+
ms.date: 08/24/2018
1111
ms.topic: quickstart
1212
ms.service: service-fabric-mesh
1313
manager: timlt
@@ -41,11 +41,18 @@ az group create --name myResourceGroup --location eastus
4141
```
4242

4343
## Deploy the application
44-
Create your application in the resource group using the `az mesh deployment create` command:
44+
Create your application in the resource group using the `az mesh deployment create` command. If you're using a Bash console, run the following:
4545

4646
```azurecli-interactive
4747
az mesh deployment create --resource-group myResourceGroup --template-uri https://sfmeshsamples.blob.core.windows.net/templates/helloworld/mesh_rp.linux.json --parameters "{\"location\": {\"value\": \"eastus\"}}"
4848
```
49+
50+
If you're using a PowerShell console, run the following:
51+
52+
```azurecli-interactive
53+
az mesh deployment create --resource-group myResourceGroup --template-uri https://sfmeshsamples.blob.core.windows.net/templates/helloworld/mesh_rp.linux.json --parameters "{'location': {'value': 'eastus'}}"
54+
```
55+
4956
The preceding command deploys a Linux application using [mesh_rp.linux.json template](https://sfmeshsamples.blob.core.windows.net/templates/helloworld/mesh_rp.linux.json). If you want to deploy a Windows application, use [mesh_rp.windows.json template](https://sfmeshsamples.blob.core.windows.net/templates/helloworld/mesh_rp.windows.json). Windows container images are larger than Linux container images and may take more time to deploy.
5057

5158
In a few minutes, the command returns:

0 commit comments

Comments
 (0)