Class: Fog::Compute::RackspaceV2::Server

Inherits:
Server
  • Object
show all
Defined in:
lib/fog/rackspace/models/compute_v2/server.rb

Constant Summary collapse

ACTIVE =

States

'ACTIVE'
BUILD =
'BUILD'
DELETED =
'DELETED'
ERROR =
'ERROR'
HARD_REBOOT =
'HARD_REBOOT'
MIGRATING =
'MIGRATING'
PASSWORD =
'PASSWORD'
REBOOT =
'REBOOT'
REBUILD =
'REBUILD'
RESCUE =
'RESCUE'
RESIZE =
'RESIZE'
REVERT_RESIZE =
'REVERT_RESIZE'
SUSPENDED =
'SUSPENDED'
UNKNOWN =
'UNKNOWN'
VERIFY_RESIZE =
'VERIFY_RESIZE'

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Server

Returns a new instance of Server.



164
165
166
167
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 164

def initialize(attributes={})
  @service = attributes[:service]
  super
end

Instance Attribute Details

#addressHash<String, Array[Hash]> (readonly)

Returns IP addresses allocated for server by network.

Examples:

{
   "public" => [
        {"version"=>4, "addr"=>"166.78.105.63"},
        {"version"=>6, "addr"=>"2001:4801:7817:0072:0fe1:75e8:ff10:61a9"}
               ],
  "private"=> [{"version"=>4, "addr"=>"10.177.18.209"}]
}

Returns:

  • (Hash<String, Array[Hash]>)

    IP addresses allocated for server by network



140
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 140

attribute :addresses

#bandwidthArray (readonly)

Returns The amount of bandwidth used for the specified audit period.

Returns:

  • (Array)

    The amount of bandwidth used for the specified audit period.

See Also:



128
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 128

attribute :bandwidth, :aliases => 'rax-bandwidth:bandwidth'

#config_drive_extBoolean

Returns whether a read-only configuration drive is attached.

Returns:

  • (Boolean)

    whether a read-only configuration drive is attached

See Also:



118
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 118

attribute :config_drive

#createdString (readonly)

Returns The time stamp for the creation date.

Returns:

  • (String)

    The time stamp for the creation date.



36
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 36

attribute :created

#disk_configString<AUTO, MANUAL>

The disk configuration value.

* AUTO -   The server is built with a single partition the size of the target flavor disk. The file system is automatically adjusted to fit the entire partition.
           This keeps things simple and automated. AUTO is valid only for images and servers with a single partition that use the EXT3 file system.
           This is the default setting for applicable Rackspace base images.

* MANUAL - The server is built using whatever partition scheme and file system is in the source image. If the target flavor disk is larger,
           the remaining disk space is left unpartitioned. This enables images to have non-EXT3 file systems, multiple partitions,
           and so on, and enables you to manage the disk configuration.

Returns:

  • (String<AUTO, MANUAL>)

    The disk configuration value.

See Also:



112
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 112

attribute :disk_config, :aliases => 'OS-DCF:diskConfig'

#flavor_idString (readonly)

Returns The flavor Id.



145
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 145

attribute :flavor_id, :aliases => 'flavor', :squash => 'id'

#host Id(Id) ⇒ Object (readonly)

The host Id. The compute provisioning algorithm has an anti-affinity property that attempts to spread customer VMs across hosts. Under certain situations, VMs from the same customer might be placed on the same host. hostId represents the host your server runs on and can be used to determine this scenario if it is relevant to your application. HostId is unique per account and is not globally unique.



49
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 49

attribute :host_id, :aliases => 'hostId'

#idString (readonly)

Returns The server id.

Returns:



28
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 28

identity :id

#image_idString (readonly)

Returns The image Id.



150
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 150

attribute :image_id, :aliases => 'image', :squash => 'id'

#ipv4_addressString Also known as: access_ipv4_address

Note:

This field will populate once the server is ready to use.

Returns The public IP version 4 access address.



92
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 92

attribute :ipv4_address, :aliases => 'accessIPv4'

#ipv6_addressString Also known as: access_ipv6_address

Note:

This field will populate once the server is ready to use.

Returns The public IP version 6 access address.



98
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 98

attribute :ipv6_address, :aliases => 'accessIPv6'

#key_nameString

Note:

The key_pair/key_name is used to specify the keypair used for server creation. It is not populated by cloud servers.

Returns The name of the key_pair used for server.

Returns:

  • (String)

    The name of the key_pair used for server.



161
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 161

attribute :key_name

Returns Server links.

Returns:

  • (Array)

    Server links.



75
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 75

attribute :links

#nameString

Returns The server name.

Returns:

  • (String)

    The server name.



32
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 32

attribute :name

#passwordString

Note:

Can be set while creating a server, but use change_admin_password instead of save/update for changes.

Returns Password for system adminstrator account.

Returns:

  • (String)

    Password for system adminstrator account.

See Also:



156
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 156

attribute :password

#personalityHash

Note:

This attribute is only used for server creation. This field will be nil on subsequent retrievals.

Returns Hash containing data to inject into the file system of the cloud server instance during server creation.

Examples:

To inject fog.txt into file system

:personality => [{ :path => '/root/fog.txt',
                   :contents => Base64.encode64('Fog was here!')
                }]

Returns:

  • (Hash)

    Hash containing data to inject into the file system of the cloud server instance during server creation.

See Also:



86
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 86

attribute :personality

#progressFixnum (readonly)

Returns The build completion progress, as a percentage. Value is from 0 to 100.

Returns:

  • (Fixnum)

    The build completion progress, as a percentage. Value is from 0 to 100.



63
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 63

attribute :progress

#stateString (readonly)

Returns server status.



54
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 54

attribute :state, :aliases => 'status'

#state_extString (readonly)

Returns server (extended) status.



59
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 59

attribute :state_ext, :aliases => 'OS-EXT-STS:task_state'

#tenant_idString (readonly)

Returns The tenant Id.

Returns:



71
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 71

attribute :tenant_id

#updatedString (readonly)

Returns The time stamp for the last update.

Returns:

  • (String)

    The time stamp for the last update.



40
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 40

attribute :updated

#user_dataBoolean

Returns User-data.



123
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 123

attribute :user_data

#user_idString (readonly)

Returns The user Id.

Returns:



67
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 67

attribute :user_id

Instance Method Details

#attach_volume(volume, device = nil) ⇒ Fog::Compute::RackspaceV2::Attachment

Attaches Cloud Block Volume

Parameters:

Returns:

Raises:

See Also:



379
380
381
382
383
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 379

def attach_volume(volume, device=nil)
  requires :identity
  volume_id = volume.is_a?(String) ? volume : volume.id
  attachments.create(:server_id => identity, :volume_id => volume_id, :device => device)
end

#attachmentsFog::Compute::RackspaceV2::Attachments

Attached Cloud Block Volumes



361
362
363
364
365
366
367
368
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 361

def attachments
  @attachments ||= begin
    Fog::Compute::RackspaceV2::Attachments.new({
      :service => service,
      :server => self
    })
  end
end

#change_admin_password(password) ⇒ Boolean

Note:

Though Rackspace does not enforce complexity requirements for the password, the operating system might. If the password is not complex enough, the server might enter an ERROR state.

Change admin password

  • Status Transition:

    • ACTIVE -> PASSWORD -> ACTIVE

    • ACTIVE -> PASSWORD -> ERROR (on error)

Parameters:

  • password (String)

    The administrator password.

Returns:

  • (Boolean)

    returns true if operation was scheduled

Raises:

See Also:



560
561
562
563
564
565
566
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 560

def change_admin_password(password)
  requires :identity
  service.change_server_password(identity, password)
  self.state = PASSWORD
  self.password = password
  true
end

#confirm_resizeObject

  • VERIFY_RESIZE -> ERROR (on error)å



484
485
486
487
488
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 484

def confirm_resize
  requires :identity
  service.confirm_resize_server(identity)
  true
end

#create(options) ⇒ Boolean

Note:

You should use servers.create to create servers instead calling this method directly

Creates server

  • requires attributes: service:, :name, :image_id, and :flavor_id

  • optional attributes :disk_config, :metadata, :personality, :config_drive

  • State Transitions

    • BUILD -> ACTIVE

    • BUILD -> ERROR (on error)

Returns:

  • (Boolean)

    returns true if server is being created

Raises:

See Also:



239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 239

def create(options)
  requires :name, :image_id, :flavor_id
  modified_options = Marshal.load(Marshal.dump(options))

  if attributes[:keypair]
    Fog::Logger.deprecation(":keypair has been depreciated. Please use :key_name instead.")
    modified_options[:key_name] = attributes[:keypair]
  end

  modified_options[:password] ||= attributes[:password] unless password.nil?
  modified_options[:networks] ||= attributes[:networks]
  modified_options[:disk_config] = disk_config unless disk_config.nil?
  modified_options[:metadata] = .to_hash unless @metadata.nil?
  modified_options[:personality] = personality unless personality.nil?
  modified_options[:config_drive] = config_drive unless config_drive.nil?
  modified_options[:user_data] = user_data_encoded unless user_data_encoded.nil?
  modified_options[:key_name] ||= attributes[:key_name]

  if modified_options[:networks]
    modified_options[:networks].map! { |id| { :uuid => id } }
  end
  data = service.create_server(name, image_id, flavor_id, 1, 1, modified_options)
  merge_attributes(data.body['server'])
  true
end

#create_image(name, options = {}) ⇒ Fog::ComputeRackspaceV2::Image

Creates Image from server. Once complete, a new image is available that you can use to rebuild or create servers.

  • State Transition:

    • SAVING -> ACTIVE

    • SAVING -> ERROR (on error)

Parameters:

  • name (String)

    name of image to create

  • options (Hash) (defaults to: {})

    :

Options Hash (options):

  • metadata (Hash<String, String>)

    hash of containing metadata key value pairs.

Returns:

  • (Fog::ComputeRackspaceV2::Image)

    image being created

Raises:

See Also:



343
344
345
346
347
348
349
350
351
352
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 343

def create_image(name, options = {})
  requires :identity
  response = service.create_image(identity, name, options)
  begin
    image_id = response.headers["Location"].match(/\/([^\/]+$)/)[1]
    Fog::Compute::RackspaceV2::Image.new(:collection => service.images, :service => service, :id => image_id)
  rescue
    nil
  end
end

#destroyBoolean

Destroy the server

  • Status Transition:

    • ACTIVE -> DELETED

    • ERROR -> DELETED

Returns:

  • (Boolean)

    returns true if server has started deleting

Raises:

See Also:



301
302
303
304
305
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 301

def destroy
  requires :identity
  service.delete_server(identity)
  true
end

#flavorFog::Compute::RackspaceV2::Flavor

Server flavor

Returns:

Raises:



313
314
315
316
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 313

def flavor
  requires :flavor_id
  @flavor ||= service.flavors.get(flavor_id)
end

#imageFog::Compute::RackspaceV2::Image

Server image

Returns:

Raises:



324
325
326
327
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 324

def image
  requires :image_id
  @image ||= service.images.get(image_id)
end

#key_pairKeyPair

Note:

The key_pair/key_name is used to specify the keypair used for server creation. It is not populated by cloud servers.

Returns the key pair based on the key_name of the server

Returns:



194
195
196
197
198
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 194

def key_pair
  requires :key_name

  service.key_pairs.get(key_name)
end

#key_pair=(new_keypair) ⇒ Object

Note:

The key_pair/key_name is used to specify the keypair used for server creation. It is not populated by cloud servers.

Sets the key_pair used by the server.

Parameters:

  • new_keypair (KeyPair)

    key_pair object for server



203
204
205
206
207
208
209
210
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 203

def key_pair=(new_keypair)
  if new_keypair.is_a?(String)
     Fog::Logger.deprecation("#key_pair= should be used to set KeyPair objects. Please use #key_name method instead")
    self.key_name = new_keypair
  else
    self.key_name = new_keypair && new_keypair.name
  end
end

#metadataFog::Compute::RackspaceV2::Metadata

Server metadata

Returns:



176
177
178
179
180
181
182
183
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 176

def 
  @metadata ||= begin
    Fog::Compute::RackspaceV2::Metadata.new({
      :service => service,
      :parent => self
    })
  end
end

#metadata=(hash = {}) ⇒ Object

Set server metadata

Parameters:

  • hash (Hash) (defaults to: {})

    contains key value pairs



187
188
189
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 187

def metadata=(hash={})
  .from_hash(hash)
end

#private_ip_addressString

Server’s private IPv4 address

Returns:

  • (String)

    private IPv4 address



387
388
389
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 387

def private_ip_address
  addresses['private'].select{|a| a["version"] == 4}[0]["addr"] rescue ''
end

#public_ip_addressString

Server’s public IPv4 address

Returns:

  • (String)

    public IPv4 address



393
394
395
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 393

def public_ip_address
  ipv4_address
end

#ready?(ready_state = ACTIVE, error_states = [ERROR]) ⇒ Boolean

Is server is in ready state

Parameters:

  • ready_state (String) (defaults to: ACTIVE)

    By default state is ACTIVE

  • error_states (Array, String) (defaults to: [ERROR])

    By default state is ERROR

Returns:

  • (Boolean)

    returns true if server is in a ready state

Raises:



402
403
404
405
406
407
408
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 402

def ready?(ready_state = ACTIVE, error_states=[ERROR])
  if error_states
    error_states = Array(error_states)
    raise InvalidServerStateException.new(ready_state, state) if error_states.include?(state)
  end
  state == ready_state
end

#reboot(type = 'SOFT') ⇒ Boolean

Reboot server

  • State transition:

    • ACTIVE -> REBOOT -> ACTIVE (soft reboot)

    • ACTIVE -> HARD_REBOOT -> ACTIVE (hard reboot)

Parameters:

  • type (String<SOFT, HARD>) (defaults to: 'SOFT')

    ‘SOFT’ will do a soft reboot. ‘HARD’ will do a hard reboot.

Returns:

  • (Boolean)

    returns true if server is being rebooted

Raises:

See Also:



422
423
424
425
426
427
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 422

def reboot(type = 'SOFT')
  requires :identity
  service.reboot_server(identity, type)
  self.state = type == 'SOFT' ? REBOOT : HARD_REBOOT
  true
end

#rebuild(image_id, options = {}) ⇒ Boolean

Rebuild removes all data on the server and replaces it with the specified image. The id and all IP addresses remain the same.

  • Status Transition:

    • ACTIVE -> REBUILD -> ACTIVE

    • ACTIVE -> REBUILD -> ERROR (on error)

Parameters:

  • image_id (String)

    image to use for rebuild

Returns:

  • (Boolean)

    returns true if rebuild is in process

Raises:

See Also:



442
443
444
445
446
447
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 442

def rebuild(image_id, options={})
  requires :identity
  service.rebuild_server(identity, image_id, options)
  self.state = REBUILD
  true
end

#rescueBoolean

Note:

Rescue mode is only guaranteed to be active for 90 minutes.

Place existing server into rescue mode, allowing for offline editing of configuration. The original server’s disk is attached to a new instance of the same base image for a period of time to facilitate working within rescue mode. The original server will be automatically restored after 90 minutes.

  • Status Transition:

    • ACTIVE -> PREP_RESCUE -> RESCUE

Returns:

  • (Boolean)

    returns true if call to put server in rescue mode reports success

Raises:

See Also:



521
522
523
524
525
526
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 521

def rescue
  requires :identity
  data = service.rescue_server(identity)
  merge_attributes(data.body)
  true
end

#resize(flavor_id) ⇒ Boolean

Note:

All resizes are automatically confirmed after 24 hours if you do not explicitly confirm or revert the resize.

Resize existing server to a different flavor, in essence, scaling the server up or down. The original server is saved for a period of time to allow rollback if there is a problem. All resizes should be tested and explicitly confirmed, at which time the original server is removed. All resizes are automatically confirmed after 24 hours if they are not confirmed or reverted.

  • Status Transition:

    • ACTIVE -> QUEUE_RESIZE -> PREP_RESIZE -> VERIFY_RESIZE

    • ACTIVE -> QUEUE_RESIZE -> ACTIVE (on error)

Parameters:

  • flavor_id (String)

    to resize

Returns:

  • (Boolean)

    returns true if resize is in process

Raises:

See Also:



464
465
466
467
468
469
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 464

def resize(flavor_id)
  requires :identity
  service.resize_server(identity, flavor_id)
  self.state = RESIZE
  true
end

#revert_resizeBoolean

Note:

All resizes are automatically confirmed after 24 hours if you do not explicitly confirm or revert the resize.

Reverts server resize operation

  • Status Transition:

    • VERIFY_RESIZE -> ACTIVE

    • VERIFY_RESIZE -> ERROR (on error)

Returns:

  • (Boolean)

    returns true if resize is being reverted

Raises:

See Also:



503
504
505
506
507
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 503

def revert_resize
  requires :identity
  service.revert_resize_server(identity)
  true
end

#save(options = {}) ⇒ Boolean

Saves the server. Creates server if it is new, otherwise it will update server attributes name, accessIPv4, and accessIPv6.

Returns:

  • (Boolean)

    true if server has started saving



215
216
217
218
219
220
221
222
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 215

def save(options = {})
  if persisted?
    update
  else
    create(options)
  end
  true
end

#setup(credentials = {}) ⇒ Object

Setup server for SSH access



570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 570

def setup(credentials = {})
  requires :ssh_ip_address, :identity, :public_key, :username

  commands = [
    %{mkdir .ssh},
    %{echo "#{public_key}" >> ~/.ssh/authorized_keys},
    password_lock,
    %{echo "#{Fog::JSON.encode(attributes)}" >> ~/attributes.json},
    %{echo "#{Fog::JSON.encode()}" >> ~/metadata.json}
  ]
  commands.compact

  self.password = nil if password_lock

  Fog::SSH.new(ssh_ip_address, username, credentials).run(commands)
rescue Errno::ECONNREFUSED
  sleep(1)
  retry
end

#unrescueBoolean

Note:

Rescue mode is only guaranteed to be active for 90 minutes.

Remove existing server from rescue mode.

  • Status Transition:

    • PREP_UNRESCUE -> ACTIVE

Returns:

  • (Boolean)

    returns true if call to remove server from rescue mode reports success

Raises:

See Also:



540
541
542
543
544
545
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 540

def unrescue
  requires :identity
  service.unrescue_server(identity)
  self.state = ACTIVE
  true
end

#updateObject

Note:

If you edit the server name, the server host name does not change. Also, server names are not guaranteed to be unique.

Updates server This will update :name, :accessIPv4, and :accessIPv6 attributes.

  • State Transition

    • ACTIVE -> ACTIVE

Returns:

  • true if update has started updating

Raises:

See Also:



277
278
279
280
281
282
283
284
285
286
287
288
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 277

def update
  requires :identity
  options = {
    'name' => name,
    'accessIPv4' => ipv4_address,
    'accessIPv6' => ipv6_address
  }

  data = service.update_server(identity, options)
  merge_attributes(data.body['server'])
  true
end

#virtual_interfacesObject



590
591
592
# File 'lib/fog/rackspace/models/compute_v2/server.rb', line 590

def virtual_interfaces
  @virtual_interfaces ||= Fog::Compute::RackspaceV2::VirtualInterfaces.new :server => self, :service => service
end