mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
7b0b60bd4e
Make private IP address available in Rackspace server
107 lines
2.7 KiB
Ruby
107 lines
2.7 KiB
Ruby
require 'fog/compute/models/server'
|
|
|
|
module Fog
|
|
module Compute
|
|
class Rackspace
|
|
|
|
class Server < Fog::Compute::Server
|
|
|
|
identity :id
|
|
|
|
attribute :addresses
|
|
attribute :flavor_id, :aliases => 'flavorId', :type => :integer
|
|
attribute :host_id, :aliases => 'hostId'
|
|
attribute :image_id, :aliases => 'imageId', :type => :integer
|
|
attribute :metadata
|
|
attribute :name
|
|
attribute :personality
|
|
attribute :progress
|
|
attribute :state, :aliases => 'status'
|
|
|
|
attr_reader :password
|
|
|
|
def initialize(attributes={})
|
|
self.flavor_id ||= 1 # 256 server
|
|
self.image_id ||= 49 # Ubuntu 10.04 LTS 64bit
|
|
super
|
|
end
|
|
|
|
def destroy
|
|
requires :id
|
|
connection.delete_server(id)
|
|
true
|
|
end
|
|
|
|
def flavor
|
|
requires :flavor_id
|
|
connection.flavors.get(flavor_id)
|
|
end
|
|
|
|
def image
|
|
requires :image_id
|
|
connection.images.get(image_id)
|
|
end
|
|
|
|
def images
|
|
requires :id
|
|
connection.images(:server => self)
|
|
end
|
|
|
|
def private_ip_address
|
|
addresses['private'].first
|
|
end
|
|
|
|
def public_ip_address
|
|
addresses['public'].first
|
|
end
|
|
|
|
def ready?
|
|
self.state == 'ACTIVE'
|
|
end
|
|
|
|
def reboot(type = 'SOFT')
|
|
requires :id
|
|
connection.reboot_server(id, type)
|
|
true
|
|
end
|
|
|
|
def save
|
|
raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if identity
|
|
requires :flavor_id, :image_id
|
|
options = {
|
|
'metadata' => metadata,
|
|
'name' => name,
|
|
'personality' => personality
|
|
}
|
|
options = options.reject {|key, value| value.nil?}
|
|
data = connection.create_server(flavor_id, image_id, options)
|
|
merge_attributes(data.body['server'])
|
|
true
|
|
end
|
|
|
|
def setup(credentials = {})
|
|
requires :public_ip_address, :identity, :public_key, :username
|
|
Fog::SSH.new(public_ip_address, username, credentials).run([
|
|
%{mkdir .ssh},
|
|
%{echo "#{public_key}" >> ~/.ssh/authorized_keys},
|
|
%{passwd -l #{username}},
|
|
%{echo "#{Fog::JSON.encode(attributes)}" >> ~/attributes.json},
|
|
%{echo "#{Fog::JSON.encode(metadata)}" >> ~/metadata.json}
|
|
])
|
|
rescue Errno::ECONNREFUSED
|
|
sleep(1)
|
|
retry
|
|
end
|
|
|
|
private
|
|
|
|
def adminPass=(new_admin_pass)
|
|
@password = new_admin_pass
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
|
|
end
|