mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
![Marc Grimme](/assets/img/avatar_default.png)
[vSphere] also fixed bug in vm_reconfig_memory: wrong memory value passed to reconfig_hardware (memory in bytes instead of memory in MB).
23 lines
1 KiB
Ruby
23 lines
1 KiB
Ruby
module Fog
|
|
module Compute
|
|
class Vsphere
|
|
class Real
|
|
def vm_reconfig_cpus(options = {})
|
|
raise ArgumentError, "cpus is a required parameter" unless options.has_key? 'cpus'
|
|
raise ArgumentError, "instance_uuid is a required parameter" unless options.has_key? 'instance_uuid'
|
|
hardware_spec={'numCPUs' => options['cpus'], 'numCoresPerSocket' => options['corespersocket']}
|
|
vm_reconfig_hardware('instance_uuid' => options['instance_uuid'], 'hardware_spec' => hardware_spec )
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def vm_reconfig_cpus(options = {})
|
|
raise ArgumentError, "cpus is a required parameter" unless options.has_key? 'cpus'
|
|
raise ArgumentError, "instance_uuid is a required parameter" unless options.has_key? 'instance_uuid'
|
|
hardware_spec={'numCPUs' => options['cpus'], 'numCoresPerSocket' => options['corespersocket']}
|
|
vm_reconfig_hardware('instance_uuid' => options['instance_uuid'], 'hardware_spec' => hardware_spec )
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|