Skip to content

Commit 69e9858

Browse files
authored
Merge pull request #54430 from rwike77/clustertutorial
Added some more info on the template
2 parents 69eef4c + 447821a commit 69e9858

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

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
@@ -81,7 +81,7 @@ This template deploys a secure cluster of five virtual machines and a single nod
8181

8282
### Service Fabric cluster
8383

84-
A Linux cluster is deployed with the following characteristics:
84+
In the **Microsoft.ServiceFabric/clusters** resource, a Linux cluster is deployed with the following characteristics:
8585

8686
* a single node type
8787
* five nodes in the primary node type (configurable in the template parameters)
@@ -95,7 +95,7 @@ A Linux cluster is deployed with the following characteristics:
9595

9696
### Azure load balancer
9797

98-
A load balancer is deployed and probes and rules setup for the following ports:
98+
In the **Microsoft.Network/loadBalancers** resource, a load balancer is configured and probes and rules setup for the following ports:
9999

100100
* client connection endpoint: 19000
101101
* HTTP gateway endpoint: 19080
@@ -104,7 +104,7 @@ A load balancer is deployed and probes and rules setup for the following ports:
104104

105105
### Virtual network and subnet
106106

107-
The names of the virtual network and subnet are declared in the template parameters. Address spaces of the virtual network and subnet are also declared in the template parameters:
107+
The names of the virtual network and subnet are declared in the template parameters. Address spaces of the virtual network and subnet are also declared in the template parameters and configured in the **Microsoft.Network/virtualNetworks** resource:
108108

109109
* virtual network address space: 10.0.0.0/16
110110
* Service Fabric subnet address space: 10.0.2.0/24

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ This template deploys a secure cluster of five virtual machines and a single nod
8383

8484
### Service Fabric cluster
8585

86-
A Windows cluster is deployed with the following characteristics:
86+
In the **Microsoft.ServiceFabric/clusters** resource, a Windows cluster is configured with the following characteristics:
8787

8888
* a single node type
8989
* five nodes in the primary node type (configurable in the template parameters)
@@ -98,24 +98,24 @@ A Windows cluster is deployed with the following characteristics:
9898

9999
### Azure load balancer
100100

101-
A load balancer is deployed and probes and rules are setup for the following ports:
101+
In the **Microsoft.Network/loadBalancers** resource, a load balancer is configured and probes and rules are setup for the following ports:
102102

103103
* client connection endpoint: 19000
104104
* HTTP gateway endpoint: 19080
105105
* application port: 80
106106
* application port: 443
107107
* Service Fabric reverse proxy: 19081
108108

109-
If any other application ports are needed, then you will need to adjust the Microsoft.Network/loadBalancers resource and the Microsoft.Network/networkSecurityGroups resource to allow the traffic in.
109+
If any other application ports are needed, then you will need to adjust the **Microsoft.Network/loadBalancers** resource and the **Microsoft.Network/networkSecurityGroups** resource to allow the traffic in.
110110

111111
### Virtual network, subnet, and network security group
112112

113-
The names of the virtual network, subnet, and network security group are declared in the template parameters. Address spaces of the virtual network and subnet are also declared in the template parameters:
113+
The names of the virtual network, subnet, and network security group are declared in the template parameters. Address spaces of the virtual network and subnet are also declared in the template parameters and configured in the **Microsoft.Network/virtualNetworks** resource:
114114

115115
* virtual network address space: 172.16.0.0/20
116116
* Service Fabric subnet address space: 172.16.2.0/23
117117

118-
The following inbound traffic rules are enabled in the network security group. You can change the port values by changing the template variables.
118+
The following inbound traffic rules are enabled in the **Microsoft.Network/networkSecurityGroups** resource. You can change the port values by changing the template variables.
119119

120120
* ClientConnectionEndpoint (TCP): 19000
121121
* HttpGatewayEndpoint (HTTP/TCP): 19080
@@ -126,7 +126,7 @@ The following inbound traffic rules are enabled in the network security group. Y
126126
* Application port range – 49152 to 65534 (used for service to service communication and unlike are not opened on the Load balancer )
127127
* Block all other ports
128128

129-
If any other application ports are needed, then you will need to adjust the Microsoft.Network/loadBalancers resource and the Microsoft.Network/networkSecurityGroups resource to allow the traffic in.
129+
If any other application ports are needed, then you will need to adjust the **Microsoft.Network/loadBalancers** resource and the **Microsoft.Network/networkSecurityGroups** resource to allow the traffic in.
130130

131131
## Set template parameters
132132

0 commit comments

Comments
 (0)