Class: Fog::Compute::OpenStack::Servers

Inherits:
Fog::Collection show all
Defined in:
lib/fog/openstack/models/compute/servers.rb

Instance Attribute Summary

Attributes inherited from Fog::Collection

#service

Instance Method Summary collapse

Methods inherited from Fog::Collection

#clear, #create, #destroy, #inspect, #load, model, #model, #new, #reload, #table, #to_json

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Fog::Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

#initialize(attributes) ⇒ Servers

Returns a new instance of Servers.



14
15
16
17
# File 'lib/fog/openstack/models/compute/servers.rb', line 14

def initialize(attributes)
  self.filters ||= {}
  super
end

Instance Method Details

#all(filters = filters) ⇒ Object



19
20
21
22
23
# File 'lib/fog/openstack/models/compute/servers.rb', line 19

def all(filters = filters)
  self.filters = filters
  data = service.list_servers_detail(filters).body['servers']
  load(data)
end

#bootstrap(new_attributes = {}) ⇒ Fog::Compute::OpenStack::Server

Creates a new server and populates ssh keys

Examples:

service.servers.bootstrap :name => 'bootstrap-server',
                          :flavor_ref => service.flavors.first.id,
                          :image_ref => service.images.find {|img| img.name =~ /Ubuntu/}.id,
                          :public_key_path => '~/.ssh/fog_rsa.pub',
                          :private_key_path => '~/.ssh/fog_rsa'

Returns:

Raises:

  • (Fog::Compute::OpenStack::NotFound)
    • HTTP 404

  • (Fog::Compute::OpenStack::BadRequest)
    • HTTP 400

  • (Fog::Compute::OpenStack::InternalServerError)
    • HTTP 500

  • (Fog::Compute::OpenStack::ServiceError)


38
39
40
41
42
43
# File 'lib/fog/openstack/models/compute/servers.rb', line 38

def bootstrap(new_attributes = {})
  server = create(new_attributes)
  server.wait_for { ready? }
  server.setup(:password => server.password)
  server
end

#get(server_id) ⇒ Object



45
46
47
48
49
50
51
# File 'lib/fog/openstack/models/compute/servers.rb', line 45

def get(server_id)
  if server = service.get_server_details(server_id).body['server']
    new(server)
  end
rescue Fog::Compute::OpenStack::NotFound
  nil
end