mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
204 lines
5.9 KiB
Ruby
204 lines
5.9 KiB
Ruby
require 'fog/model'
|
|
|
|
module Fog
|
|
module AWS
|
|
class Compute
|
|
|
|
class Server < Fog::Model
|
|
|
|
identity :id, :aliases => 'instanceId'
|
|
|
|
attr_accessor :architecture
|
|
attribute :ami_launch_index, :aliases => 'amiLaunchIndex'
|
|
attribute :availability_zone, :aliases => 'availabilityZone'
|
|
attribute :block_device_mapping, :aliases => 'blockDeviceMapping'
|
|
attribute :dns_name, :aliases => 'dnsName'
|
|
attribute :groups
|
|
attribute :flavor_id, :aliases => 'instanceType'
|
|
attribute :image_id, :aliases => 'imageId'
|
|
attribute :ip_address, :aliases => 'ipAddress'
|
|
attribute :kernel_id, :aliases => 'kernelId'
|
|
attribute :key_name, :aliases => 'keyName'
|
|
attribute :created_at, :aliases => 'launchTime'
|
|
attribute :monitoring
|
|
attribute :product_codes, :aliases => 'productCodes'
|
|
attribute :private_dns_name, :aliases => 'privateDnsName'
|
|
attribute :private_ip_address, :aliases => 'privateIpAddress'
|
|
attribute :ramdisk_id, :aliases => 'ramdiskId'
|
|
attribute :reason
|
|
attribute :root_device_name, :aliases => 'rootDeviceName'
|
|
attribute :root_device_type, :aliases => 'rootDeviceType'
|
|
attribute :state, :aliases => 'instanceState'
|
|
attribute :subnet_id, :aliases => 'subnetId'
|
|
attribute :user_data
|
|
|
|
attr_accessor :password, :private_key_path, :public_key_path, :username
|
|
|
|
def initialize(attributes={})
|
|
@groups ||= ["default"] unless attributes[:subnet_id]
|
|
@flavor_id ||= 'm1.small'
|
|
super
|
|
end
|
|
|
|
def addresses
|
|
requires :id
|
|
|
|
connection.addresses(:server => self)
|
|
end
|
|
|
|
def console_output
|
|
requires :id
|
|
|
|
connection.get_console_output(@id)
|
|
end
|
|
|
|
def destroy
|
|
requires :id
|
|
|
|
connection.terminate_instances(@id)
|
|
true
|
|
end
|
|
|
|
def flavor_id
|
|
@flavor && @flavor.id || @flavor_id
|
|
end
|
|
|
|
def flavor=(new_flavor)
|
|
@flavor = new_flavor
|
|
end
|
|
|
|
def flavor
|
|
@flavor ||= connection.flavors.all.detect {|flavor| flavor.id == @flavor_id}
|
|
end
|
|
|
|
def key_pair
|
|
requires :key_name
|
|
|
|
connection.keypairs.all(@key_name).first
|
|
end
|
|
|
|
def key_pair=(new_keypair)
|
|
@key_name = new_keypair.name
|
|
end
|
|
|
|
def monitoring=(new_monitoring)
|
|
if new_monitoring.is_a?(Hash)
|
|
@monitoring = new_monitoring['state']
|
|
else
|
|
@monitoring = new_monitoring
|
|
end
|
|
end
|
|
|
|
def placement=(new_placement)
|
|
if new_placement.is_a?(Hash)
|
|
@availability_zone = new_placement['availabilityZone']
|
|
else
|
|
@availability_zone = new_placement
|
|
end
|
|
end
|
|
|
|
def private_key_path
|
|
@private_key_path ||= Fog.credentials[:private_key_path]
|
|
end
|
|
|
|
def public_key_path
|
|
@public_key_path ||= Fog.credentials[:public_key_path]
|
|
end
|
|
|
|
def ready?
|
|
@state == 'running'
|
|
end
|
|
|
|
def reboot
|
|
requires :id
|
|
connection.reboot_instances(@id)
|
|
true
|
|
end
|
|
|
|
def save
|
|
requires :image_id
|
|
|
|
options = {
|
|
'BlockDeviceMapping' => block_device_mapping,
|
|
'InstanceType' => flavor_id,
|
|
'KernelId' => kernel_id,
|
|
'KeyName' => key_name,
|
|
'Monitoring.Enabled' => monitoring,
|
|
'Placement.AvailabilityZone' => availability_zone,
|
|
'RamdiskId' => ramdisk_id,
|
|
'SecurityGroup' => groups,
|
|
'SubnetId' => subnet_id,
|
|
'UserData' => user_data
|
|
}
|
|
|
|
# If subnet is defined we are working on a virtual private cloud.
|
|
# subnet & security group cannot co-exist. I wish VPC just ignored
|
|
# the security group parameter instead, it would be much easier!
|
|
if subnet_id
|
|
options.delete('SecurityGroup')
|
|
else
|
|
options.delete('SubnetId')
|
|
end
|
|
|
|
data = connection.run_instances(image_id, 1, 1, options)
|
|
merge_attributes(data.body['instancesSet'].first)
|
|
true
|
|
end
|
|
|
|
def setup(credentials = {})
|
|
requires :ip_address, :identity, :public_key_path, :username
|
|
sleep(10) # takes a bit before EC2 instances will play nice
|
|
Fog::SSH.new(ip_address, username, credentials).run([
|
|
%{mkdir .ssh},
|
|
%{echo "#{File.read(File.expand_path(public_key_path))}" >> ~/.ssh/authorized_keys},
|
|
%{passwd -l root},
|
|
%{echo "#{attributes.to_json}" >> ~/attributes.json}
|
|
])
|
|
rescue Errno::ECONNREFUSED => e
|
|
sleep(1)
|
|
retry
|
|
end
|
|
|
|
def ssh(commands)
|
|
requires :identity, :ip_address, :private_key_path, :username
|
|
@ssh ||= Fog::SSH.new(ip_address, username, :keys => [private_key_path])
|
|
@ssh.run(commands)
|
|
end
|
|
|
|
def start
|
|
requires :id
|
|
connection.start_instances(@id)
|
|
true
|
|
end
|
|
|
|
def stop
|
|
requires :id
|
|
connection.stop_instances(@id)
|
|
true
|
|
end
|
|
|
|
def username
|
|
@username ||= 'root'
|
|
end
|
|
|
|
def volumes
|
|
requires :id
|
|
|
|
connection.volumes(:server => self)
|
|
end
|
|
|
|
private
|
|
|
|
def state=(new_state)
|
|
if new_state.is_a?(Hash)
|
|
@state = new_state['name']
|
|
else
|
|
@state = new_state
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|