1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[openstack|compute] Added request for boot_from_snapshot.

This commit is contained in:
Alfonso Juan Dillera 2012-04-11 11:22:10 +08:00 committed by Nelvin Driz
parent 974954d366
commit 20f6fd1969
2 changed files with 41 additions and 0 deletions

View file

@ -66,6 +66,7 @@ module Fog
request :add_fixed_ip
request :remove_fixed_ip
request :server_diagnostics
request :boot_from_snapshot
# Server Extenstions
request :get_console_output

View file

@ -0,0 +1,40 @@
module Fog
module Compute
class OpenStack
class Real
def boot_from_snapshot(name, image_ref, flavor_ref, options={})
data = {
'server' => {
'flavorRef' => flavor_ref,
'imageRef' => image_ref,
'name' => name
}
}
vanilla_options = ['metadata', 'accessIPv4', 'accessIPv6',
'availability_zone', 'user_data', 'block_device_mapping']
vanilla_options.select{|o| options[o]}.each do |key|
data['server'][key] = options[key]
end
if options['personality']
data['server']['personality'] = []
for file in options['personality']
data['server']['personality'] << {
'contents' => Base64.encode64(file['contents']),
'path' => file['path']
}
end
end
request(
:body => MultiJson.encode(data),
:expects => [200, 202],
:method => 'POST',
:path => '/os-volumes_boot.json'
)
end
end
end # class OpenStack
end # module Compute
end # module Fog