Is there way to change to instance type in Azure Cloud Services

前端 未结 3 543
既然无缘
既然无缘 2021-01-17 08:32

Is there any way to change the VM Size of an Azure Cloud Service without having to rebuild the package?

The vmsize parameter is defined

3条回答
  •  渐次进展
    2021-01-17 08:45

    You can use Azure Powershell:

    C:\PS>Get-AzureVM -ServiceName "MySvc1" -Name "MyVM3" | Set-AzureVMSize "Basic_A2" | Update-AzureVM
    

提交回复
热议问题