2010-11-08 07:21:31 -05:00
|
|
|
require 'fog/core/collection'
|
2011-08-24 21:31:12 -04:00
|
|
|
require 'fog/brightbox/models/compute/server'
|
2010-11-08 07:21:31 -05:00
|
|
|
|
|
|
|
module Fog
|
2011-06-16 19:28:54 -04:00
|
|
|
module Compute
|
|
|
|
class Brightbox
|
2010-11-08 07:21:31 -05:00
|
|
|
|
|
|
|
class Servers < Fog::Collection
|
|
|
|
|
2011-06-16 19:28:54 -04:00
|
|
|
model Fog::Compute::Brightbox::Server
|
2010-11-08 07:21:31 -05:00
|
|
|
|
|
|
|
def all
|
2012-12-22 18:29:21 -05:00
|
|
|
data = service.list_servers
|
2010-11-08 07:21:31 -05:00
|
|
|
load(data)
|
|
|
|
end
|
|
|
|
|
2012-05-09 05:48:48 -04:00
|
|
|
# Creates a server and maps an Cloud IP
|
|
|
|
#
|
|
|
|
# By default the public SSH key you have registered with
|
|
|
|
# Brightbox is already made available in an AWS compatible
|
|
|
|
# metdata service.
|
|
|
|
#
|
|
|
|
# @todo Support uploading of arbitary SSH keys
|
|
|
|
#
|
|
|
|
# @param [Hash] options
|
|
|
|
# @option options [String] name Name for the server
|
|
|
|
# @option options [String] flavor_id Identifier for virtual hardware type to request
|
|
|
|
# @option options [String] image_id Identifier for image to use when creating
|
|
|
|
# @option options [String] zone_id Identifer for preferred zone to locate server in
|
|
|
|
# @option options [Array<String>] server_groups List of group identifiers for the server to join
|
|
|
|
#
|
|
|
|
# @return Fog::Compute::Brightbox::Server
|
|
|
|
#
|
|
|
|
def bootstrap(options = {})
|
|
|
|
server = create(options)
|
|
|
|
|
|
|
|
# Ensure server is now available
|
|
|
|
server.wait_for { ready? }
|
|
|
|
|
|
|
|
# To get a public IP address we need to map a cloud IP address
|
2012-12-22 18:29:21 -05:00
|
|
|
cip = service.cloud_ips.allocate
|
2012-05-09 05:48:48 -04:00
|
|
|
cip.map(server)
|
|
|
|
cip.wait_for { mapped? }
|
|
|
|
|
|
|
|
# Reload so the public IP is now available
|
|
|
|
server.reload
|
|
|
|
end
|
|
|
|
|
2010-11-08 07:21:31 -05:00
|
|
|
def get(identifier)
|
|
|
|
return nil if identifier.nil? || identifier == ""
|
2012-12-22 18:29:21 -05:00
|
|
|
data = service.get_server(identifier)
|
2010-11-08 07:21:31 -05:00
|
|
|
new(data)
|
|
|
|
rescue Excon::Errors::NotFound
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
2012-05-09 05:48:48 -04:00
|
|
|
end
|