Azure Python VM规模集网络配置文件没有网络接口配置

时间:2019-01-13 09:47:59

标签: azure azure-sdk azure-sdk-python

我正在尝试通过Azure python SDK部署VM Scale Set。
当我尝试创建比例尺集时,抛出异常:
Message: VM scale set network profile /subscriptions/subscription_id/resourceGroups/MatrixRG/providers/Microsoft.Compute/virtualMachineScaleSets/ScaleSetName/updateGroups/63e63aa7-0f01-42be-88fd-ada85c591967 has no network interface configurations

我正在通过以下代码段创建VM规模集:

region_name = 'eastus'
        sku = Sku(name='Standard_DS1_v2', capacity=5)

        vmss_profile = VirtualMachineScaleSetVMProfile(storage_profile={
                    'image_reference':
                    {
                        'id': '/subscriptions/e500fb85-1759-463b-b828-0d4e0b38a305/resourceGroups/MatrixRG/'
                              'providers/Microsoft.Compute/images/libscapiImageEastUS'
                    }
                },
            os_profile={
                'adminUsername': 'ubuntu',
                'computerName': 'myVM',
                'linux_configuration': {
                    'disable_password_authentication': True,
                    'ssh': {
                        'public_keys': [{
                            'path': '/home/ubuntu/.ssh/authorized_keys',
                            'key_data': key_data
                        }]
                    }
                }
            },
            network_profile={
            'network_interfaces': [{
                'id': nic
            }]
        })
        vmss = VirtualMachineScaleSet(region_name, sku=sku, virtual_machine_profile=vmss_profile,
                                      upgrade_policy=upgrade_policy, single_placement_group=True)
        response = self.compute_client.virtual_machine_scale_sets.create_or_update(self.resource_group, 'HyperMPC',

1 个答案:

答案 0 :(得分:1)

创建Azure VM缩放集时,NIC应该是VirtualMachineScaleSetVMProfile的对象。并且VirtualMachineScaleSetNetworkProfile必须包含NIC配置的列表。 NIC编号取决于您的VM Scale Set容量。

然后,所有Azure VM规模集功能here。希望这会帮助你。还有其他问题,请给我消息。