删除 vmss 网络接口配置时出错

Error on removing vmss Network Interface Configuration

删除 vmss 网络接口配置时出错。这是代码:

$myVmss = Get-AzVmss -ResourceGroupName 'MyApp-test-rg' -VMScaleSetName 'Myapp-vmss'
 

Remove-AzVmssNetworkInterfaceConfiguration -VirtualMachineScaleSet $myVmss -Name $myVmss.VirtualMachineProfile.NetworkProfile.NetworkInterfaceConfigurations.IPConfigurations.Name

获取错误为-

Remove-AzVmssNetworkInterfaceConfiguration: Sequence contains no matching element

有人可以建议一下吗。

已编辑:

我想做的就是将基本 LB 的后端池配置应用到新的标准 LB。在遵循 Joy 的建议后,删除命令有效,但现在在 update-azvmss 命令上遇到问题。

$myVmss = Get-AzVmss -ResourceGroupName $rgName -VMScaleSetName $vmssName
$newlb = (Get-AzLoadBalancer -ResourceGroupName $rgName -Name $newLbName)
$mySubnetId = $myVmss.VirtualMachineProfile.NetworkProfile.NetworkInterfaceConfigurations.IpConfigurations[0].Subnet.Id
$backendPoolId = $newlb.BackendAddressPools.Id

$ipConfig = New-AzVmssIpConfig -Name MyNewConfig -SubnetId $mySubnetId -LoadBalancerBackendAddressPoolsId $backendPoolId

Remove-AzVmssNetworkInterfaceConfiguration -VirtualMachineScaleSet $myVmss -Name $myVmss.VirtualMachineProfile.NetworkProfile.NetworkInterfaceConfigurations.Name[1]  

Add-AzVmssNetworkInterfaceConfiguration -Name MyNewConfig -Primary $true -VirtualMachineScaleSet $myVmss -IpConfiguration $ipConfig

$myVmss | Update-AzVmss

这里是错误-

Update-AzVmss: Primary network interface configuration of VM scale set /subscriptions/xxxxxxxxxxxx/resourceGroups/xxxxxx-RG/providers/Microsoft.Compute/virtualMachineScaleSets/xxxxxxx cannot be changed. Original Primary network interface configuration: xxxxxx-vnet-v2-nic01, Requested: MyNewConfig.

需要传的是NetworkInterfaceConfiguration的名字,不是IPConfiguration,注意myVmss.VirtualMachineProfile.NetworkProfile.NetworkInterfaceConfigurations.Name是一个数组,所以要给出具体的[=22] =]

在 运行 Remove-AzVmssNetworkInterfaceConfiguration 之前,您可能需要检查 $myVmss.VirtualMachineProfile.NetworkProfile.NetworkInterfaceConfigurations.Name 以确认要删除的 NetworkInterfaceConfiguration

比如你要删除Test,那么命令应该是:

Remove-AzVmssNetworkInterfaceConfiguration -VirtualMachineScaleSet $myVmss -Name $myVmss.VirtualMachineProfile.NetworkProfile.NetworkInterfaceConfigurations.Name[1]

小提示:

要使它生效,你需要停止VMSS,然后在Remove-AzVmssNetworkInterfaceConfiguration之后使用Update-AzVmss

$myVmss = Get-AzVmss -ResourceGroupName testvmss -VMScaleSetName myvmss 

Remove-AzVmssNetworkInterfaceConfiguration -VirtualMachineScaleSet $myVmss -Name $myVmss.VirtualMachineProfile.NetworkProfile.NetworkInterfaceConfigurations.Name[1]

$myvmss | Update-AzVmss