2012-01-22 10:38:02 -05:00
|
|
|
require 'fog/compute/models/server'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class Ovirt
|
|
|
|
|
|
|
|
class Server < Fog::Compute::Server
|
|
|
|
|
|
|
|
# This will be the instance uuid which is globally unique across
|
|
|
|
# a oVirt deployment.
|
|
|
|
identity :id
|
|
|
|
|
|
|
|
attribute :name
|
|
|
|
attribute :description
|
|
|
|
attribute :profile
|
|
|
|
attribute :display
|
|
|
|
attribute :storage, :aliases => 'disk_size'
|
|
|
|
attribute :creation_time
|
|
|
|
attribute :os
|
|
|
|
attribute :ip
|
|
|
|
attribute :status
|
|
|
|
attribute :cores, :aliases => 'cpus'
|
|
|
|
attribute :memory
|
|
|
|
attribute :host
|
|
|
|
attribute :cluster
|
|
|
|
attribute :template
|
2012-03-12 06:25:03 -04:00
|
|
|
attribute :interfaces
|
2012-04-09 09:42:58 -04:00
|
|
|
attribute :volumes
|
2012-01-22 10:38:02 -05:00
|
|
|
attribute :raw
|
|
|
|
|
|
|
|
def ready?
|
|
|
|
!(status =~ /down/i)
|
|
|
|
end
|
|
|
|
|
2012-03-12 06:25:03 -04:00
|
|
|
def locked?
|
|
|
|
!!(status =~ /locked/i)
|
|
|
|
end
|
|
|
|
|
2012-01-22 10:38:02 -05:00
|
|
|
def stopped?
|
|
|
|
!!(status =~ /down/i)
|
|
|
|
end
|
|
|
|
|
|
|
|
def mac
|
2012-03-12 06:25:03 -04:00
|
|
|
interfaces.first.mac unless interfaces.empty?
|
|
|
|
end
|
|
|
|
|
|
|
|
def interfaces
|
|
|
|
attributes[:interfaces] ||= id.nil? ? [] : Fog::Compute::Ovirt::Interfaces.new(
|
|
|
|
:connection => connection,
|
|
|
|
:vm => self
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_interface attrs
|
|
|
|
wait_for { stopped? } if attrs[:blocking]
|
|
|
|
connection.add_interface(id, attrs)
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_interface attrs
|
|
|
|
wait_for { stopped? } if attrs[:blocking]
|
|
|
|
connection.update_interface(id, attrs)
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy_interface attrs
|
|
|
|
wait_for { stopped? } if attrs[:blocking]
|
|
|
|
connection.destroy_interface(id, attrs)
|
2012-01-22 10:38:02 -05:00
|
|
|
end
|
|
|
|
|
2012-04-09 09:42:58 -04:00
|
|
|
def volumes
|
|
|
|
attributes[:volumes] ||= id.nil? ? [] : Fog::Compute::Ovirt::Volumes.new(
|
|
|
|
:connection => connection,
|
|
|
|
:vm => self
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_volume attrs
|
|
|
|
wait_for { stopped? } if attrs[:blocking]
|
|
|
|
connection.add_volume(id, attrs)
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy_volume attrs
|
|
|
|
wait_for { stopped? } if attrs[:blocking]
|
|
|
|
connection.destroy_volume(id, attrs)
|
|
|
|
end
|
|
|
|
|
2012-01-22 10:38:02 -05:00
|
|
|
def start(options = {})
|
2012-02-19 07:51:06 -05:00
|
|
|
wait_for { stopped? } if options[:blocking]
|
2012-02-08 06:58:10 -05:00
|
|
|
connection.vm_action(:id =>id, :action => :start)
|
2012-01-22 10:38:02 -05:00
|
|
|
reload
|
|
|
|
end
|
|
|
|
|
|
|
|
def stop(options = {})
|
2012-02-08 06:58:10 -05:00
|
|
|
connection.vm_action(:id =>id, :action => :stop)
|
2012-01-22 10:38:02 -05:00
|
|
|
reload
|
|
|
|
end
|
|
|
|
|
|
|
|
def reboot(options = {})
|
2012-02-08 06:58:10 -05:00
|
|
|
stop unless stopped?
|
2012-02-19 07:51:06 -05:00
|
|
|
start options.merge(:blocking => true)
|
2012-02-08 06:58:10 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def suspend(options = {})
|
|
|
|
connection.vm_action(:id =>id, :action => :suspend)
|
2012-01-22 10:38:02 -05:00
|
|
|
reload
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy(options = {})
|
2012-02-08 06:58:10 -05:00
|
|
|
(stop unless stopped?) rescue nil #ignore failure, destroy the machine anyway.
|
2012-01-22 10:38:02 -05:00
|
|
|
wait_for { stopped? }
|
2012-02-08 06:58:10 -05:00
|
|
|
connection.destroy_vm(:id => id)
|
2012-01-22 10:38:02 -05:00
|
|
|
end
|
|
|
|
|
2012-03-21 10:00:57 -04:00
|
|
|
def ticket(options = {})
|
|
|
|
raise "Can not set console ticket, Server is not ready. Server status: #{status}" unless ready?
|
|
|
|
connection.vm_ticket(id, options)
|
|
|
|
end
|
|
|
|
|
2012-01-22 10:38:02 -05:00
|
|
|
def save
|
2012-12-22 21:45:05 -05:00
|
|
|
if persisted?
|
2012-02-20 07:18:54 -05:00
|
|
|
connection.update_vm(attributes)
|
|
|
|
else
|
|
|
|
self.id = connection.create_vm(attributes).id
|
|
|
|
end
|
2012-01-22 10:38:02 -05:00
|
|
|
reload
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
|
|
|
name
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|