使用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中的错误吗?