Skip to content

Commit bd06da4

Browse files
Merge pull request #106037 from erikadoyle/sf-fixes
Service Fabric content updates and fixes
2 parents ebac70c + 8e22869 commit bd06da4

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed
54.4 KB
Loading

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ Ephemeral OS disks is not a specific Service Fabric feature, but rather a featur
7272
"virtualMachineProfile": {
7373
"storageProfile": {
7474
"osDisk": {
75-
"vhdContainers": ["[concat(reference(concat('Microsoft.Storage/storageAccounts/', parameters('vmStorageAccountName')), variables('storageApiVersion')).primaryEndpoints.blob, parameters('vmStorageAccountContainerName'))]"],
7675
"caching": "ReadOnly",
7776
"createOption": "FromImage",
7877
"diffDiskSettings": {

articles/service-fabric/service-fabric-cluster-creation-setup-aad.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ When you try to sign in to Azure AD in Service Fabric Explorer, the page returns
100100
The cluster (web) application that represents Service Fabric Explorer attempts to authenticate against Azure AD, and as part of the request it provides the redirect return URL. But the URL is not listed in the Azure AD application **REPLY URL** list.
101101

102102
#### Solution
103-
On the Azure AD page, select **App registrations**, select your cluster application, and then select **Reply URLs**. In the **Reply URLs** pane, add the Service Fabric Explorer URL to the list, or replace one of the items in the list. Save your change.
103+
On the Azure AD app registration page for your cluster, select **Authentication**, and under the **Redirect URIs** section, add the Service Fabric Explorer URL to the list. Save your change.
104104

105105
![Web application reply URL][web-application-reply-url]
106106

articles/service-fabric/service-fabric-cluster-nodetypes.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ ms.custom: sfrev
88
---
99
# Azure Service Fabric node types and virtual machine scale sets
1010

11-
[Virtual machine scale sets](/azure/virtual-machine-scale-sets) are an Azure compute resource. You can use scale sets to deploy and manage a collection of virtual machines as a set. Each node type that you define in an Azure Service Fabric cluster sets up a separate scale. The Service Fabric runtime is installed on each virtual machine in the scale set by the *Microsoft.Azure.ServiceFabric* Virtual Machine extension. You can independently scale each node type up or down, change the OS SKU running on each cluster node, have different sets of ports open, and use different capacity metrics.
11+
[Virtual machine scale sets](/azure/virtual-machine-scale-sets) are an Azure compute resource. You can use scale sets to deploy and manage a collection of virtual machines as a set. Each node type that you define in an Azure Service Fabric cluster sets up exactly one scale set: multiple node types cannot be backed by the same scale set and one node type should not (in most cases) be backed by multiple scale sets. An exception to this is in the rare situation of [vertical scaling](service-fabric-best-practices-capacity-scaling.md#vertical-scaling-considerations) a node type, when you temporarily have two scale sets with the same `nodeTypeRef` value while replicas are migrated from the original to the upgraded scale set.
12+
13+
The Service Fabric runtime is installed on each virtual machine in the scale set by the *Microsoft.Azure.ServiceFabric* Virtual Machine extension. You can independently scale each node type up or down, change the OS SKU running on each cluster node, have different sets of ports open, and use different capacity metrics.
1214

1315
The following figure shows a cluster that has two node types, named *FrontEnd* and *BackEnd*. Each node type has five nodes.
1416

0 commit comments

Comments
 (0)