Skip to content

Commit e08606d

Browse files
committed
Fix blocking issues
1 parent 68db0ff commit e08606d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/service-fabric/quickstart-cluster-template.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ ms.service: service-fabric
66
ms.topic: quickstart
77
ms.custom: subject-armqs
88
ms.author: edoyle
9-
ms.date: 04/27/2020
9+
ms.date: 04/24/2020
1010
---
1111
# Quickstart: Create a Service Fabric cluster using Resource Manager template
1212

13-
Azure Service Fabric is a distributed systems platform that makes it easy to package, deploy, and manage scalable and reliable microservices and containers. An Service Fabric *cluster* is a network-connected set of virtual machines into which your microservices are deployed and managed.
13+
Azure Service Fabric is a distributed systems platform that makes it easy to package, deploy, and manage scalable and reliable microservices and containers. A Service Fabric *cluster* is a network-connected set of virtual machines into which your microservices are deployed and managed.
1414

1515
[!INCLUDE [About Azure Resource Manager](../../includes/resource-manager-quickstart-introduction.md)]
1616

17-
This article describes how to deploy a Service Fabric test cluster in Azure using the Resource Manager. This 5-node Windows cluster is secured with a self-signed certificate and thus only intended for instructional purposes (rather than production workloads).
17+
This article describes how to deploy a Service Fabric test cluster in Azure using the Resource Manager. This five-node Windows cluster is secured with a self-signed certificate and thus only intended for instructional purposes (rather than production workloads).
1818

1919
We'll use Azure PowerShell to deploy the template. In addition to Azure PowerShell, you can also use the Azure portal, Azure CLI, and REST API. To learn other deployment methods, see [Deploy templates](../azure-resource-manager/templates/deploy-portal.md).
2020

@@ -28,11 +28,11 @@ To complete this quickstart, you'll need to:
2828

2929
* Install the [Service Fabric SDK and PowerShell module](service-fabric-get-started.md).
3030

31-
* Install [Azure Powershell](https://docs.microsoft.com/powershell/azure/install-Az-ps).
31+
* Install [Azure PowerShell](https://docs.microsoft.com/powershell/azure/install-Az-ps).
3232

3333
### Download the sample template and certificate helper script
3434

35-
Clone or download the [Azure Resource Manager QuickStart Templates](https://github.com/Azure/azure-quickstart-templates) repo. Alternatively, simply copy down locally the following files we'll be using from the *service-fabric-secure-cluster-5-node-1-nodetype* folder:
35+
Clone or download the [Azure Resource Manager quickstart Templates](https://github.com/Azure/azure-quickstart-templates) repo. Alternatively, copy down locally the following files we'll be using from the *service-fabric-secure-cluster-5-node-1-nodetype* folder:
3636

3737
* [New-ServiceFabricClusterCertificate.ps1](https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/service-fabric-secure-cluster-5-node-1-nodetype/New-ServiceFabricClusterCertificate.ps1)
3838
* [azuredeploy.json](https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/service-fabric-secure-cluster-5-node-1-nodetype/azuredeploy.json)
@@ -85,7 +85,7 @@ $certThumbprint = "<Certificate Thumbprint>"
8585

8686
### Review the template
8787

88-
The template used in this quickstart is from [Azure Quickstart templates](https://github.com/Azure/azure-quickstart-templates/blob/master/service-fabric-secure-cluster-5-node-1-nodetype). The template for this article is too long to show here. To view the template, see https://github.com/Azure/azure-quickstart-templates/blob/master/service-fabric-secure-cluster-5-node-1-nodetype/azuredeploy.json.
88+
The template used in this quickstart is from [Azure quickstart templates](https://github.com/Azure/azure-quickstart-templates/blob/master/service-fabric-secure-cluster-5-node-1-nodetype). The template for this article is too long to show here. To view the template, see https://github.com/Azure/azure-quickstart-templates/blob/master/service-fabric-secure-cluster-5-node-1-nodetype/azuredeploy.json.
8989

9090
Multiple Azure resources have been defined in the template:
9191

@@ -97,7 +97,7 @@ Multiple Azure resources have been defined in the template:
9797
* [Microsoft.ServiceFabric/clusters](/azure/templates/microsoft.servicefabric/clusters)
9898

9999
To find more templates that are related to Azure Service Fabric, see
100-
[Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/?sort=Popular&term=service+fabric).
100+
[Azure quickstart Templates](https://azure.microsoft.com/resources/templates/?sort=Popular&term=service+fabric).
101101

102102
### Customize the parameters file
103103

@@ -139,7 +139,7 @@ For example:
139139

140140
## Deploy the template
141141

142-
Store the paths of your resource manager template and parameter files in variables, then deploy the template.
142+
Store the paths of your Resource Manager template and parameter files in variables, then deploy the template.
143143

144144
```powershell
145145
$templateFilePath = "<full path to azuredeploy.json>"

0 commit comments

Comments
 (0)