我知道有派对服务结构集群,但它是公开的。我不想用它。
我是否可以配置一个azure devtest实验室,以便我可以在我的机器上本地创建服务,但是使用azure devtest实验室在云中测试我的服务,以便我们可以在实验室中进行生产就绪测试?
或者azure devtest lab不是为这种服务结构服务创作和测试而构建的吗?
答案 0 :(得分:3)
DevTest Labs is designed to enable the creation of individual VMs for development and testing. It does not support creating clusters of VMs as is required for Service Fabric or the Azure Container Service.
If your goal is to be able to stand up a cluster when you need it for testing and then tear it down afterwards, most people accomplish that by creating an ARM template that describes their test environment, then using scripts to create/delete that environment on-demand as part of their CI flow.
答案 1 :(得分:0)
您目前可以使用ARM模板(可能包含Service Fabric群集)并将其部署在DevTest Lab中。作为此模板的一部分部署的VM将创建相应的实验室VM,并且能够作为实验室的正常VM参与(自动启动/停止,成本等)。详情here。
目前正在开发Service Fabric群集特定支持。您将能够自动启动/停止整个群集。
答案 2 :(得分:0)