Skip to content

Commit ad20d49

Browse files
committed
acrolinx
1 parent 324a012 commit ad20d49

7 files changed

+29
-29
lines changed

articles/service-fabric/service-fabric-cluster-creation-via-arm.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ If you are creating a production cluster to run production workloads, we recomme
2626
[!INCLUDE [updated-for-az](../../includes/updated-for-az.md)]
2727

2828
## Prerequisites
29-
In this article, use the Service Fabric RM powershell or Azure CLI modules to deploy a cluster:
29+
In this article, use the Service Fabric RM PowerShell or Azure CLI modules to deploy a cluster:
3030

3131
* [Azure PowerShell 4.1 and above][azure-powershell]
3232
* [Azure CLI version 2.0 and above][azure-CLI]
@@ -60,7 +60,7 @@ You can use either the following PowerShell or Azure CLI commands to create a cl
6060
The default template used is available here for [Windows](https://github.com/Azure-Samples/service-fabric-cluster-templates/tree/master/5-VM-Windows-1-NodeTypes-Secure-NSG)
6161
and here for [Ubuntu](https://github.com/Azure-Samples/service-fabric-cluster-templates/tree/master/5-VM-Ubuntu-1-NodeTypes-Secure).
6262

63-
The following commands can create either Windows or Linux clusters, depending on how specify the OS parameter. Both PowerShell/CLI commands output the certificate in the specified *CertificateOutputFolder* (make sure the certificate folder location you specify already exists before running the command!).
63+
The following commands can create either Windows or Linux clusters, depending on how you specify the OS parameter. Both PowerShell/CLI commands output the certificate in the specified *CertificateOutputFolder* (make sure the certificate folder location you specify already exists before running the command!).
6464

6565
> [!NOTE]
6666
> The following PowerShell command only works with the Azure PowerShell `Az` module. To check the current version of Azure Resource Manager PowerShell version, run the following PowerShell command "Get-Module Az". Follow [this link](/powershell/azure/install-Az-ps) to upgrade your Azure Resource Manager PowerShell version.
@@ -159,7 +159,7 @@ You can use the following command to specify an existing certificate to create a
159159

160160
If this is a CA signed certificate that you will end up using for other purposes as well, then it is recommended that you provide a distinct resource group specifically for your key vault. We recommend that you put the key vault into its own resource group. This action lets you remove the compute and storage resource groups, including the resource group that contains your Service Fabric cluster, without losing your keys and secrets. **The resource group that contains your key vault *must be in the same region* as the cluster that is using it.**
161161

162-
### Use the default five node, one node type template that ships in the module
162+
### Use the default five nodes, one node type template that ships in the module
163163

164164
The default template used is available here for [Windows](https://github.com/Azure-Samples/service-fabric-cluster-templates/tree/master/5-VM-Windows-1-NodeTypes-Secure-NSG)
165165
and here for [Ubuntu](https://github.com/Azure-Samples/service-fabric-cluster-templates/tree/master/5-VM-Ubuntu-1-NodeTypes-Secure).

articles/service-fabric/service-fabric-get-started-linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ For manual installation of the Service Fabric runtime and common SDK, follow the
8888
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
8989
```
9090

91-
6. Add Azul JDK Key to your APT keyring and setup its repository.
91+
6. Add Azul JDK Key to your APT keyring and set up its repository.
9292

9393
```bash
9494
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 0xB1998361219BD9C9

articles/service-fabric/service-fabric-get-started-mac.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ ms.date: 07/14/2022
1414
# service-fabric-local-linux-cluster-windows.md
1515
---
1616

17-
# Set up your development environment on Mac OS X
17+
# Set up your development environment on macOS X
1818
> [!div class="op_single_selector"]
1919
> * [Windows](service-fabric-get-started.md)
2020
> * [Linux](service-fabric-get-started-linux.md)
21-
> * [Mac OS X](service-fabric-get-started-mac.md)
21+
> * [macOS X](service-fabric-get-started-mac.md)
2222
23-
You can build Azure Service Fabric applications to run on Linux clusters by using Mac OS X. This document covers how to set up your Mac for development.
23+
You can build Azure Service Fabric applications to run on Linux clusters by using macOS X. This document covers how to set up your Mac for development.
2424

2525
## Prerequisites
26-
Azure Service Fabric doesn't run natively on Mac OS X. To run a local Service Fabric cluster, a pre-configured Docker container image is provided. Before you get started, you'll need:
26+
Azure Service Fabric doesn't run natively on macOS X. To run a local Service Fabric cluster, a pre-configured Docker container image is provided. Before you get started, you'll need:
2727

2828
* The system requirements for installing [Docker Desktop on Mac](https://docs.docker.com/docker-for-mac/install/)
2929

@@ -147,14 +147,14 @@ sfctl cluster select --endpoint http://localhost:19080
147147

148148
Service Fabric provides scaffolding tools that help you to create a Service Fabric application from the terminal by using the Yeoman template generator. Use the following steps to ensure that the Service Fabric Yeoman template generator is working on your machine:
149149

150-
1. Node.js and Node Package Manager (NPM) must be installed on your Mac. The software can be installed by using [HomeBrew](https://brew.sh/), as follows:
150+
1. Node.js and Node Package Manager must be installed on your Mac. The software can be installed by using [HomeBrew](https://brew.sh/), as follows:
151151

152152
```bash
153153
brew install node
154154
node -v
155155
npm -v
156156
```
157-
2. Install the [Yeoman](https://yeoman.io/) template generator on your machine from NPM:
157+
2. Install the [Yeoman](https://yeoman.io/) template generator on your machine from Node Package Manager:
158158

159159
```bash
160160
npm install -g yo

articles/service-fabric/service-fabric-how-to-publish-linux-app-vs.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Create and Publish a.Net Core app to a remote Linux Cluster
3-
description: Create and publish .Net Core apps targeting a remote Linux cluster from Visual Studio
2+
title: Create and Publish a .NET Core app to a remote Linux Cluster
3+
description: Create and publish .NET Core apps targeting a remote Linux cluster from Visual Studio
44
ms.topic: how-to
55
ms.author: tomcassidy
66
author: tomvcassidy
@@ -9,26 +9,26 @@ services: service-fabric
99
ms.date: 07/14/2022
1010
---
1111

12-
# Use Visual Studio to create and publish .Net Core applications targeting a remote Linux Service Fabric cluster
13-
With Visual Studio tooling you can develop and publish Service Fabric .Net Core applications targeting a Linux Service Fabric cluster. The SDK version must be 3.4 or above to deploy a .Net Core application targeting Linux Service Fabric clusters from Visual Studio.
12+
# Use Visual Studio to create and publish .NET Core applications targeting a remote Linux Service Fabric cluster
13+
With Visual Studio tooling you can develop and publish Service Fabric .NET Core applications targeting a Linux Service Fabric cluster. The SDK version must be 3.4 or above to deploy a .NET Core application targeting Linux Service Fabric clusters from Visual Studio.
1414

1515
> [!Note]
1616
> Visual Studio doesn't support debugging Service Fabric applications which target Linux.
1717
>
1818
19-
## Create a Service Fabric application targeting .Net Core
19+
## Create a Service Fabric application targeting .NET Core
2020
1. Launch Visual Studio as an **administrator**.
2121
2. Create a project with **File->New->Project**.
2222
3. In the **New Project** dialog, choose **Cloud -> Service Fabric Application**.
2323
![create-application]
2424
4. Name the application and click **Ok**.
25-
5. On the **New Service Fabric Service** page, select the type of service you would like to create under the **.Net Core Section**.
25+
5. On the **New Service Fabric Service** page, select the type of service you would like to create under the **.NET Core Section**.
2626
![create-service]
2727

2828
## Deploy to a remote Linux cluster
2929
1. In the solution explorer, right click on the application and select **Build**.
3030
![build-application]
31-
2. Once the build process for the application has completed, right click on the service and select edit the **csproj file**.
31+
2. Once the build process for the application has completed, right click on the service and choose to edit the **csproj file**.
3232
![edit-csproj]
3333
3. Edit the UpdateServiceFabricManifestEnabled property from True to **False** if the service is an **actor project type**. If your application does not have an actor service, skip to step 4.
3434
```xml
@@ -62,4 +62,4 @@ With Visual Studio tooling you can develop and publish Service Fabric .Net Core
6262
[publish-application]:./media/service-fabric-how-to-vs-remote-linux-cluster/publish-remote-linux.png
6363

6464
## Next steps
65-
* Learn about [Getting started with Service Fabric with .Net Core](https://azure.microsoft.com/resources/samples/service-fabric-dotnet-core-getting-started/)
65+
* Learn about [Getting started with Service Fabric with .NET Core](https://azure.microsoft.com/resources/samples/service-fabric-dotnet-core-getting-started/)

articles/service-fabric/service-fabric-tutorial-create-vnet-and-linux-cluster.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ In the **Microsoft.ServiceFabric/clusters** resource, a Linux cluster is deploye
6363

6464
### Azure load balancer
6565

66-
In the **Microsoft.Network/loadBalancers** resource, a load balancer is configured and probes and rules setup for the following ports:
66+
In the **Microsoft.Network/loadBalancers** resource, a load balancer is configured and probes and rules set up for the following ports:
6767

6868
* client connection endpoint: 19000
6969
* HTTP gateway endpoint: 19080
@@ -99,7 +99,7 @@ The **AzureDeploy.Parameters** file declares many values used to deploy the clus
9999

100100
Next, set up the network topology and deploy the Service Fabric cluster. The **AzureDeploy.json** Resource Manager template creates a virtual network (VNET) and a subnet for Service Fabric. The template also deploys a cluster with certificate security enabled. For production clusters, use a certificate from a certificate authority (CA) as the cluster certificate. A self-signed certificate can be used to secure test clusters.
101101

102-
The template in this article deploy a cluster that uses the certificate thumbprint to identify the cluster certificate. No two certificates can have the same thumbprint, which makes certificate management more difficult. Switching a deployed cluster from using certificate thumbprints to using certificate common names makes certificate management much simpler. To learn how to update the cluster to use certificate common names for certificate management, read [change cluster to certificate common name management](service-fabric-cluster-change-cert-thumbprint-to-cn.md).
102+
The template in this article deploys a cluster that uses the certificate thumbprint to identify the cluster certificate. No two certificates can have the same thumbprint, which makes certificate management more difficult. Switching a deployed cluster from using certificate thumbprints to using certificate common names makes certificate management much simpler. To learn how to update the cluster to use certificate common names for certificate management, read [change cluster to certificate common name management](service-fabric-cluster-change-cert-thumbprint-to-cn.md).
103103

104104
### Create a cluster using an existing certificate
105105

@@ -170,7 +170,7 @@ If you're not immediately moving on to the next article, you might want to [dele
170170

171171
Learn how to [scale a Cluster](service-fabric-tutorial-scale-cluster.md).
172172

173-
The template in this article deploy a cluster that uses the certificate thumbprint to identify the cluster certificate. No two certificates can have the same thumbprint, which makes certificate management more difficult. Switching a deployed cluster from using certificate thumbprints to using certificate common names makes certificate management much simpler. To learn how to update the cluster to use certificate common names for certificate management, read [change cluster to certificate common name management](service-fabric-cluster-change-cert-thumbprint-to-cn.md).
173+
The template in this article deploys a cluster that uses the certificate thumbprint to identify the cluster certificate. No two certificates can have the same thumbprint, which makes certificate management more difficult. Switching a deployed cluster from using certificate thumbprints to using certificate common names makes certificate management much simpler. To learn how to update the cluster to use certificate common names for certificate management, read [change cluster to certificate common name management](service-fabric-cluster-change-cert-thumbprint-to-cn.md).
174174

175175
[template]:https://github.com/Azure-Samples/service-fabric-cluster-templates/blob/master/7-VM-Ubuntu-3-NodeTypes-Secure/AzureDeploy.json
176176
[parameters]:https://github.com/Azure-Samples/service-fabric-cluster-templates/blob/master/7-VM-Ubuntu-3-NodeTypes-Secure/AzureDeploy.Parameters.json

articles/service-fabric/service-fabric-tutorial-package-containers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ This tutorial is part two in a series. In this tutorial, a template generator to
3030

3131
Service fabric provides scaffolding tools to help create applications from terminal using Yeoman template generator. Follow the steps below to ensure you have the Yeoman template generator.
3232

33-
1. Install nodejs and NPM on your machine. Note that, Mac OSX users will have to use the package manager Homebrew
33+
1. Install nodejs and Node Package Manager on your machine. Note that, Mac OSX users will have to use the package manager Homebrew
3434

3535
```bash
3636
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash
3737
nvm install node
3838
```
39-
2. Install Yeoman template generator on your machine from NPM
39+
2. Install Yeoman template generator on your machine from Node Package Manager:
4040

4141
```bash
4242
npm install -g yo

articles/service-fabric/service-fabric-versions.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -130,17 +130,17 @@ The following table lists the version names of Service Fabric and their correspo
130130
| 8.1 CU1 | 8.1.321.9590 | 8.1.323.1 |
131131
| 8.1 RTO | 8.1.316.9590 | 8.1.320.1 |
132132
| 8.0 CU3 | 8.0.536.9590 | 8.0.527.1 |
133-
| 8.0 CU2 | 8.0.521.9590 | NA |
134-
| 8.0 CU1 | 8.0.516.9590 | 8.0.515.1 |
135-
| 8.0 RTO | 8.0.514.9590 | 8.0.513.1 |
133+
| 8.0 CU2 | 8.0.521.9590 | Not applicable |
134+
| 8.0 CU1 | 8.0.516.9590 | 8.0.515.1 |
135+
| 8.0 RTO | 8.0.514.9590 | 8.0.513.1 |
136136
| 7.2 CU7 | 7.2.477.9590 | 7.2.476.1 |
137137
| 7.2 CU6 | 7.2.457.9590 | 7.2.456.1 |
138138
| 7.2 CU5 | 7.2.452.9590 | 7.2.454.1 |
139139
| 7.2 CU4 | 7.2.445.9590 | 7.2.447.1 |
140-
| 7.2 CU3 | 7.2.433.9590 | NA |
140+
| 7.2 CU3 | 7.2.433.9590 | Not applicable |
141141
| 7.2 CU2 | 7.2.432.9590 | 7.2.431.1 |
142-
| 7.2 RTO | 7.2.413.9590 | NA |
143-
| 7.1 CU10 | 7.1.510.9590 | NA |
142+
| 7.2 RTO | 7.2.413.9590 | Not applicable |
143+
| 7.1 CU10 | 7.1.510.9590 | Not applicable |
144144
| 7.1 CU8 | 7.1.503.9590 | 7.1.508.1 |
145145
| 7.1 CU6 | 7.1.459.9590 | 7.1.455.1 |
146146
| 7.1 CU5 | 7.1.458.9590 | 7.1.454.1 |

0 commit comments

Comments
 (0)