是否可以将比例集添加到现有VNET

时间:2016-05-22 08:47:49

标签: azure azure-vm-scale-set

我已经创建了一个VNet和子网。为此Vnet添加了其他资源。现在我需要为此子网添加一个Scale Set。这可能吗?

当我从Azure门户创建VM Scale Set时,它不会要求VNet,而是创建自己的VNet /子网。

1 个答案:

答案 0 :(得分:1)

假设您拥有扩展集配置所需的所有资源,下面是创建虚拟机规模集的步骤。

#IP configuration
$ipName = "IP configuration name"

#create the IP configuration
$ipConfig = New-AzureRmVmssIpConfig -Name $ipName -LoadBalancerBackendAddressPoolsId $null -SubnetId $vnet.Subnets[0].Id

$vmssConfig = "Scale set configuration name"

#create the configuration for the scale set
$vmss = New-AzureRmVmssConfig -Location $locName -SkuCapacity 3 -SkuName "Standard_A0" -UpgradePolicyMode "manual"

#Add the network interface configuration to the scale set configuration
Add-AzureRmVmssNetworkInterfaceConfiguration -VirtualMachineScaleSet $vmss -Name $vmssConfig -Primary $true -IPConfiguration $ipConfig

$vmssName = "scale set name"

#create the scale set 
New-AzureRmVmss -ResourceGroupName $rgName -Name $vmssName -VirtualMachineScaleSet $vmss

有关分步指导,请参阅https://azure.microsoft.com/en-us/documentation/articles/virtual-machine-scale-sets-windows-create/

请注意,您使用的是最新版本的Azure Powershell,否则您将错过一些Powershell cmdlet。

希望这有帮助。