Class: Fog::Compute::RackspaceV2::Servers

Inherits:
Fog::Collection show all
Defined in:
lib/fog/rackspace/models/compute_v2/servers.rb

Instance Attribute Summary

Attributes inherited from Fog::Collection

#service

Instance Method Summary collapse

Methods inherited from Fog::Collection

#clear, #create, #destroy, #initialize, #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

This class inherits a constructor from Fog::Collection

Instance Method Details

#all(filters = {}) ⇒ Fog::Compute::RackspaceV2::Servers

Note:

Fog’s current implementation only returns 1000 servers

Note:

The filter parameter on the method is just to maintain compatability with other providers that support filtering.

Returns list of servers



21
22
23
24
# File 'lib/fog/rackspace/models/compute_v2/servers.rb', line 21

def all(filters = {})
  data = service.list_servers.body['servers']
  load(data)
end

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

Note:

This method is compatible with Cloud Servers utlizing RackConnect ***if and only if*** provided the attribute “no_passwd_lock” set to true.

Creates a new server and populates ssh keys

Examples:

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

Returns:

Raises:



42
43
44
45
46
47
# File 'lib/fog/rackspace/models/compute_v2/servers.rb', line 42

def bootstrap(new_attributes = {})
  server = create(new_attributes)
  server.wait_for(1500) { ready? && !public_ip_address.empty? }
  server.setup(:password => server.password)
  server
end

#get(server_id) ⇒ Fog::Compute::RackspaceV2:Server

Retrieves server

Parameters:

  • server_id (String)

    for server to be returned

Returns:

  • (Fog::Compute::RackspaceV2:Server)

Raises:

See Also:



57
58
59
60
61
62
# File 'lib/fog/rackspace/models/compute_v2/servers.rb', line 57

def get(server_id)
  data = service.get_server(server_id).body['server']
  new(data)
rescue Fog::Compute::RackspaceV2::NotFound
  nil
end