Skip to content

Commit 4b35554

Browse files
committed
Acrolinx
1 parent d58c20e commit 4b35554

11 files changed

+39
-40
lines changed

articles/service-fabric/quickstart-guest-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This quickstart helps you deploy an existing application (Node.js in this exampl
1515

1616
## Prerequisites
1717

18-
Before you get started, make sure that you have [set up your development environment](service-fabric-get-started.md). Which includes installing the Service Fabric SDK and Visual Studio 2019 or 2015.
18+
Before you get started, make sure that you have [set up your development environment](service-fabric-get-started.md), which includes installing the Service Fabric SDK and Visual Studio 2019 or 2015.
1919

2020
You also need to have an existing Node.js application for deployment. This quickstart uses a simple Node.js website that can be downloaded [here][download-sample]. Extract this file to your `<path-to-project>\ApplicationPackageRoot\<package-name>\Code\` folder after you create the project in the next step.
2121

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.date: 07/14/2022
1111

1212
# Quickstart: Deploy a Service Fabric managed cluster with an Azure Resource Manager template
1313

14-
Service Fabric managed clusters are an evolution of the Azure Service Fabric cluster resource model that streamlines your deployment and cluster management experience. Service Fabric managed clusters are a fully encapsulated resource that enable you to deploy a single Service Fabric cluster resource rather than having to deploy all of the underlying resources that make up a Service Fabric cluster. This article describes how to do deploy a Service Fabric managed cluster for testing in Azure using an Azure Resource Manager template (ARM template).
14+
Service Fabric managed clusters are an evolution of the Azure Service Fabric cluster resource model that streamlines your deployment and cluster management experience. A Service Fabric managed cluster is a fully encapsulated resource that enables you to deploy a single Service Fabric cluster resource rather than having to deploy all of the underlying resources that make up a Service Fabric cluster. This article describes how to do deploy a Service Fabric managed cluster for testing in Azure using an Azure Resource Manager template (ARM template).
1515

1616
The three-node Basic SKU cluster deployed in this tutorial is only intended to be used for instructional purposes (rather than production workloads). For further information, see [Service Fabric managed cluster SKUs](overview-managed-cluster.md#service-fabric-managed-cluster-skus).
1717

articles/service-fabric/release-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ We are excited to announce that 9.0 release of the Service Fabric runtime has st
2929
### Key announcements
3030
- **General Availability** Support for .NET 6.0
3131
- **General Availability** Support for Ubuntu 20.04
32-
- **General Availability** Support for Multi-AZ within a single VM Scale Set (VMSS)
32+
- **General Availability** Support for Multi-AZ within a single virtual machine scale set
3333
- Added support for IHost, IHostBuilder and Minimal Hosting Model
3434
- Enabling opt-in option for Data Contract Serialization (DCS) based remoting exception
3535
- Support creation of End-to-End Developer Experience for Linux development on Windows using WSL2

articles/service-fabric/service-fabric-api-management-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ In the simplest case, traffic is forwarded to a stateless service instance. To a
4646

4747
**Example**
4848

49-
In the following scenario, a Service Fabric application contains a stateless service named `fabric:/app/fooservice`, that exposes an internal HTTP API. The service instance name is well known and can be hard-coded directly in the API Management inbound processing policy.
49+
In the following scenario, a Service Fabric application contains a stateless service named `fabric:/app/fooservice` that exposes an internal HTTP API. The service instance name is well known and can be hard-coded directly in the API Management inbound processing policy.
5050

5151
![Diagram that shows a Service Fabric application contains a stateless service that exposes an internal HTTP API.][sf-apim-static-stateless]
5252

articles/service-fabric/service-fabric-application-upgrade-advanced.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ HealthState : Ok
180180
ApplicationParameters : { "ImportantParameter" = "1"; "NewParameter" = "testBefore" }
181181
```
182182

183-
Now, upgrade the application using the **Start-ServiceFabricApplicationUpgrade** cmdlet. This example shows an monitored upgrade, but an unmonitored upgrade can also be used. To see a full description of flags accepted by this cmdlet, see the [Azure Service Fabric PowerShell module reference](/powershell/module/servicefabric/start-servicefabricapplicationupgrade#parameters)
183+
Now, upgrade the application using the **Start-ServiceFabricApplicationUpgrade** cmdlet. This example shows a monitored upgrade, but an unmonitored upgrade can also be used. To see a full description of flags accepted by this cmdlet, see the [Azure Service Fabric PowerShell module reference](/powershell/module/servicefabric/start-servicefabricapplicationupgrade#parameters)
184184

185185
```PowerShell
186186
PS C:\> $appParams = @{ "ImportantParameter" = "2"; "NewParameter" = "testAfter"}

0 commit comments

Comments
 (0)