如何通过python为Softlayer虚拟服务器指定单个磁盘大小



我使用python softlayer来创建虚拟服务器的实例。当我指定2个磁盘大小时,请求可以被验证。如果我只请求一个磁盘大小,调用就会失败。我不想使用默认大小。如何指定100gb的驱动器?

样本要求:

vsi_request= {
    'cpus': 2,
    'memory': 6144,
    'hourly': True,
    'hostname': 'test',
    'domain': u'sample.domain.com',
    'local_disk': False,
    'datacenter': datacenter_code,
    'os_code' : u'UBUNTU_14_64',
    'dedicated': False,
    'private_vlan': 1234,
    'post_uri': 'https://bla',
    'private': True,
    'ssh_keys': [2345],
    'nic_speed': 1000,
    'tags': 'test, pleaseCancel',
    'disks': ('100')  <---- This makes it fail
}
vsi = vsmgr.verify_create_instance(**vsi_request)

我已经尝试了各种输入:

# <no disks specification> success, default to 25 GB
#('100', '10') success
#('100') Unable to find prices for block device 0 with capacity of 1.
#('25') Unable to find prices for block device 0 with capacity of 2.
## Some invalid values just to see the error message
#('500')  Unable to find prices for block device 0 with capacity of 5.
#('100', '4') Unable to find prices for block device 2 with capacity of 4.
#('100', '0') Unable to find prices for block device 2 with capacity of 0.

相关的堆栈跟踪:

Traceback (most recent call last):
vsi = vsmgr.verify_create_instance(**vsi_request)
File "C:Python27libsite-packagesSoftLayermanagersvs.py", line 475, in verify_create_instance
return self.guest.generateOrderTemplate(create_options)
File "C:Python27libsite-packagesSoftLayerAPI.py", line 373, in call_handler
return self(name, *args, **kwargs)
File "C:Python27libsite-packagesSoftLayerAPI.py", line 341, in call
return self.client.call(self.name, name, *args, **kwargs)
File "C:Python27libsite-packagesSoftLayerAPI.py", line 237, in call
return self.transport(request)
File "C:Python27libsite-packagesSoftLayertransports.py", line 187, in __call__
raise _ex(ex.faultCode, ex.faultString)
SoftLayer.exceptions.SoftLayerAPIError:  SoftLayerAPIError(SoftLayer_Exception_NotFound): Unable to find prices for block device 0 with capacity of 1.

请试试这个:

'disks': ['100']

'disks': ('100',)

例句:

vsi_request= {
    'cpus': 2,
    'memory': 6144,
    'hourly': True,
    'hostname': 'test',
    'domain': u'sample.domain.com',
    'local_disk': False,
    'datacenter': datacenter_code,
    'os_code' : u'UBUNTU_14_64',
    'dedicated': False,
    'private_vlan': 1234,
    'post_uri': 'https://bla',
    'private': True,
    'ssh_keys': [2345],
    'nic_speed': 1000,
    'tags': 'test, pleaseCancel',
    'disks': ['100']
}

另外,我建议使用get_create_options来获得订购VSI的可用选项:

mgr.get_create_options()

最新更新