Azure Automation DSC 是否遵守 Service Fabric 更新域?

Does Azure Automation DSC respect Service Fabric update domains?

我有一个托管在 Microsoft Azure 中的 Service Fabric 集群,我已将其规模集配置为向 Azure Automation DSC 注册所有节点(遵循 https://docs.microsoft.com/en-us/azure/virtual-machines/extensions/dsc-template#template-example-for-windows-virtual-machine-scale-sets 中的示例)。

我现在需要更新 DSC 脚本以确保禁用 TLS 1.0。此注册表更改需要重新启动受影响的计算机。我如何让 DSC 一次应用此更改一个更新域,以便集群中的所有 VM 不会同时重新启动?

这取决于您为集群配置的durability level

  • Gold 重新启动可以延迟到 Service Fabric 群集批准为止。每个 UD 可以暂停更新 2 小时,以便让副本有更多时间从早期故障中恢复

  • Silver 重新启动可以延迟到 Service Fabric 群集批准为止。更新不能延迟任何重要的时间段

  • Bronze Service Fabric 群集不会延迟重新启动。更新不能延迟任何重要的时间段

因此,您需要集群具有银牌或金牌级别。