如何更改服务结构中的主节点类型?

时间:2017-02-23 15:07:18

标签: azure-service-fabric

如何在不降低整个VMSS的情况下更改VMSS的SKU(特别是主节点类型)?

我尝试将升级模式设置为手动

$vmss.UpgradePolicy.Mode = [Microsoft.Azure.Management.Compute.Models.UpgradeMode]::Manual
Update-AzureRmVmss -ResourceGroupName $ResourceGroupName -Name  $VMScaleSetName -VirtualMachineScaleSet $vmss

刚刚结束:

  

虚拟机比例设置扩展名   Microsoft.Azure.ServiceFabric.ServiceFabricNode不能设置为   手动升级模式

忽略并只是进行升级

$vmss.Sku.Name = "Standard_A2_V2";
Update-AzureRmVmss -ResourceGroupName $ResourceGroupName -Name $VMScaleSetName -VirtualMachineScaleSet $vmss

而是同时关闭所有节点。那么推荐的方法是什么?

1 个答案:

答案 0 :(得分:1)

如果您已配置耐久性等级' Gold'您可以执行此操作。或者' Silver'。 (虽然银不可用)

有关此here的详情。