使用ex_create_multiple_nodes时ex_get_disktype上的Libcloud错误

时间:2018-08-22 10:08:32

标签: python google-compute-engine libcloud

使用Python和Apache Libcloud 2.3.0,我使用此功能在Google Compute Engine上创建VM实例:

driver.ex_create_multiple_nodes(
    'compute-1534889462', 
    'f1-micro', 
    'image-1', 
    9, 
    location='europe-west4-b', 
    ex_preemptible=True
)

我得到的输出错误:

  File "/usr/local/lib/python2.7/dist-packages/libcloud/compute/drivers/gce.py", line 6838, in ex_get_disktype
    request = '/zones/%s/diskTypes/%s' % (zone.name, name)
AttributeError: 'NoneType' object has no attribute 'name'

将ex_disktype设置为“ pd-standard”时,错误仍然存​​在。

我在一个月前测试了该功能,并了解它曾经起作用过。这可能是Apache LibCloud中的错误吗?

0 个答案:

没有答案