Skip to content

Commit 1fb0fd9

Browse files
committed
Fix acrolinx terminology issues
1 parent a333ee8 commit 1fb0fd9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/service-fabric/service-fabric-cluster-azure-deployment-preparation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ See the minimum recommendations for [primary node types](service-fabric-cluster-
3636

3737
Any more than the minimum number of nodes should be based on the number of replicas of the application/services that you want to run in this node type. [Capacity planning for Service Fabric applications](service-fabric-capacity-planning.md) helps you estimate the resources you need to run your applications. You can always scale the cluster up or down later to adjust for changing application workload.
3838

39-
#### Use ephemeral OS disks for VM scale sets
39+
#### Use ephemeral OS disks for virtual machine scale sets
4040

4141
*Ephemeral OS disks* are storage created on the local virtual machine (VM), and not saved to remote Azure Storage. They are recommended for all Service Fabric node types (Primary and Secondary), because compared to traditional persistent OS disks, ephemeral OS disks:
4242

4343
* Reduce read/write latency to OS disk
4444
* Enable faster reset/reimage node management operations
4545
* Reduce overall costs (the disks are free and incur no additional storage cost)
4646

47-
Ephemeral OS disks is not a specific Service Fabric feature, but rather a feature of the Azure *Virtual Machine scale sets* that are mapped to Service Fabric node types. Using them with Service Fabric requires the following in your cluster Azure Resource Manager template:
47+
Ephemeral OS disks is not a specific Service Fabric feature, but rather a feature of the Azure *virtual machine scale sets* that are mapped to Service Fabric node types. Using them with Service Fabric requires the following in your cluster Azure Resource Manager template:
4848

4949
1. Ensure your node types specify [supported Azure VM sizes](../virtual-machines/windows/ephemeral-os-disks.md) for Ephemeral OS disks, and that the VM size has sufficient cache size to support its OS disk size (see *Note* below.) For example:
5050

@@ -55,16 +55,16 @@ Ephemeral OS disks is not a specific Service Fabric feature, but rather a featur
5555
```
5656

5757
> [!NOTE]
58-
> Be sure to select a VM size with a cache size equal or greater than the OS disk size of the VM itself, otherwise your ARM deployment might result in error (even if it's initially accepted).
58+
> Be sure to select a VM size with a cache size equal or greater than the OS disk size of the VM itself, otherwise your Azure deployment might result in error (even if it's initially accepted).
5959

60-
2. Specify a VMSS (Virtual Machine Scale Set) version of `2018-06-01` or later. For example:
60+
2. Specify a virtual machine scale set version (`vmssApiVersion`) of `2018-06-01` or later:
6161

6262
```xml
6363
"variables": {
6464
"vmssApiVersion": "2018-06-01",
6565
```
6666

67-
3. In the VMSS section of your deployment template, specify `Local` option for `diffDiskSettings`:
67+
3. In the virtual machine scale set section of your deployment template, specify `Local` option for `diffDiskSettings`:
6868

6969
```xml
7070
"apiVersion": "[variables('vmssApiVersion')]",

0 commit comments

Comments
 (0)