Skip to content

Commit b5bb5f3

Browse files
Merge pull request #278809 from tomvcassidy/subnetNSGReq
NSG rule requirements for subnet per nodetype
2 parents 9ac67f8 + de53a7b commit b5bb5f3

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

articles/service-fabric/how-to-managed-cluster-deploy-with-subnet-per-nodetype.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,22 @@ Configure your managed cluster's network properly for your scenario. You can use
2020
* [Bring-Your-Own-Virtual-Network scenario](how-to-managed-cluster-networking.md#bring-your-own-virtual-network)
2121
* [Bring-Your-Own-Azure-Load-Balancer scenario](how-to-managed-cluster-networking.md#bring-your-own-azure-load-balancer)
2222

23+
You need to configure the rules of the NSG on the subnet to allow connections from Service Fabric Resource Provider (SFRP). Specifically, `SFMC_AllowServiceFabricGatewayToSFRP` and `SFMC_AllowServiceFabricGatewayToLB` must be allowed.
24+
25+
The `SFMC_AllowServiceFabricGatewayToSFRP` NSG rule should take the following form:
26+
27+
| Rule | Destination port range | Protocol | Source address prefix | Destination address prefix | Access |
28+
| - | - | - | - | - | - |
29+
| SFMC_AllowServiceFabricGatewayToSFRP | 19000, 19080 | TCP | ServiceFabric | VirtualNetwork | Allow |
30+
31+
The `SFMC_AllowServiceFabricGatewayToLB` NSG rule should take the following form:
32+
33+
| Rule | Destination port range | Protocol | Source address prefix | Destination address prefix | Access |
34+
| - | - | - | - | - | - |
35+
| SFMC_AllowServiceFabricGatewayToLB | Any | Any | AzureLoadBalancer | VirtualNetwork | Allow |
36+
37+
For ARM template formatting of NSG rules, see the [NSG rule: SFMC_AllowServiceFabricGatewayToSFRP section of Configure network settings for Service Fabric managed clusters](how-to-managed-cluster-networking.md#nsg-rule-sfmc_allowservicefabricgatewaytosfrp) as an example.
38+
2339
Subnet per NodeType only works for Service Fabric API version `2022-10-01 preview` or later.
2440

2541
## Considerations and limitations

0 commit comments

Comments
 (0)