Azure Service Fabric join Virtual network

后端 未结 2 574
再見小時候
再見小時候 2021-01-07 00:47

Is it possible to join a Azure Service Fabric Cluster to a Virtual Network in Azure ?

Not simply join an existing Virtual Network, but also join the vm\'s where the

2条回答
  •  温柔的废话
    2021-01-07 01:19

    Yes. The default SF template creates a VNET for the cluster, so I assume you mean join to an existing VNET.

    If you take a look at the sample template for SF, you can see the subnet0Ref variable which is being used to set the network profile of the NICs that are part of the newly created scale set. You can modify the template to lookup your pre-existing subnet using the resourceid template expression function (documentation). Then you can just drop all the other resources from the template that you don't need created, like the VNET itself.

提交回复
热议问题