Azure Service Fabric 加入虚拟网络

Azure Service Fabric join Virtual network

是否可以将 Azure Service Fabric 集群加入 Azure 中的虚拟网络?

不仅要加入现有的虚拟网络,还要将群集所在的虚拟机 运行 加入到域中。以便集群可以使用域用户帐户访问网络共享等..

是的。默认 SF 模板为群集创建 VNET,因此我假设您的意思是加入现有 VNET。

如果你看一下 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)。然后,您可以从不需要创建的模板中删除所有其他资源,例如 VNET 本身。

这是由我们的支持工程师编写的强调如何使用和现有虚拟网络/子网的文档。 https://blogs.msdn.microsoft.com/kwill/2016/10/05/azure-service-fabric-common-networking-scenarios/

我们正在将此内容合并到我们的官方文档中。抱歉延迟了。