gpt4 book ai didi

python - Openstack NovaClient : Error while launching an instance using servers. 创建()

转载 作者:行者123 更新时间:2023-11-30 23:09:17 27 4
gpt4 key购买 nike

我尝试使用 nova python 客户端通过以下 api 调用生成一个 cirros 实例,

server = nova.servers.create(name = "cirros_vm",
image = image.id,
flavor = flavor.id )

我收到以下错误:

novaclient.exceptions.BadRequest: Multiple possible networks
found, use a Network ID to be more specific. (HTTP 400)
(Request-ID: req-c3aba1d2-23e9-4751-badc-60142286232e)

这是因为我的租户内有多个网络。帮助文档显示应使用可选的 nics 参数。

 :param nics:  (optional extension) an ordered list of nics to be
added to this server, with information about
connected networks, fixed ips, port etc.

但我无法弄清楚如何将网络 ID 传递给此 api。当我将网络 ID 作为有序列表提供时,

server = nova.servers.create(name = "api_cir_test",
image = image.id,
flavor = flavor.id,
nics=[ network1.id, network2.id])

我收到以下错误:

AttributeError: 'unicode' object has no attribute 'get'

以下是所使用变量的详细信息:

nova is an object of Client in module novaclient.v1_1.client 
image = nova.images.find(name="cirros")
flavor =nova.flavors.find(name="m1.small")
network =nova.networks.find(label="test_net")

最佳答案

nics 参数需要的信息与您在 nova boot 命令行上提供的信息相同...这意味着它接受网络 ID 以外的内容(您可以传入例如,显式中子端口 ID,或者您可以提供有关固定 IP 地址的信息)。 nics 参数需要一个字典的有序列表,例如:

server = nova.servers.create(name = "api_cir_test",
image = image.id,
flavor = flavor.id,
nics=[{'net-id': network1.id},
{'net-id': network2.id}])

这应该成功创建您的服务器。

关于python - Openstack NovaClient : Error while launching an instance using servers. 创建(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31326423/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com