Class: Fog::Compute::Ovirt::Server

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

Instance Method Summary collapse

Instance Method Details

#add_interface(attrs) ⇒ Object



62
63
64
65
# File 'lib/fog/ovirt/models/compute/server.rb', line 62

def add_interface(attrs)
  wait_for { stopped? } if attrs[:blocking]
  service.add_interface(id, attrs)
end

#add_to_affinity_group(attrs) ⇒ Object



109
110
111
112
# File 'lib/fog/ovirt/models/compute/server.rb', line 109

def add_to_affinity_group(attrs)
  wait_for { stopped? } if attrs[:blocking]
  service.add_to_affinity_group(id, attrs)
end

#add_volume(attrs) ⇒ Object



84
85
86
87
# File 'lib/fog/ovirt/models/compute/server.rb', line 84

def add_volume(attrs)
  wait_for { stopped? } if attrs[:blocking]
  service.add_volume(id, attrs)
end

#attach_volume(attrs) ⇒ Object



99
100
101
102
# File 'lib/fog/ovirt/models/compute/server.rb', line 99

def attach_volume(attrs)
  wait_for { stopped? } if attrs[:blocking]
  service.attach_volume(id, attrs)
end

#destroy(_options = {}) ⇒ Object



160
161
162
163
164
165
166
167
168
# File 'lib/fog/ovirt/models/compute/server.rb', line 160

def destroy(_options = {})
  begin
    (stop unless stopped?)
  rescue StandardError
    nil
  end # ignore failure, destroy the machine anyway.
  wait_for { stopped? }
  service.destroy_vm(:id => id)
end

#destroy_interface(attrs) ⇒ Object



72
73
74
75
# File 'lib/fog/ovirt/models/compute/server.rb', line 72

def destroy_interface(attrs)
  wait_for { stopped? } if attrs[:blocking]
  service.destroy_interface(id, attrs)
end

#destroy_volume(attrs) ⇒ Object



89
90
91
92
# File 'lib/fog/ovirt/models/compute/server.rb', line 89

def destroy_volume(attrs)
  wait_for { stopped? } if attrs[:blocking]
  service.destroy_volume(id, attrs)
end

#detach_volume(attrs) ⇒ Object



104
105
106
107
# File 'lib/fog/ovirt/models/compute/server.rb', line 104

def detach_volume(attrs)
  wait_for { stopped? } if attrs[:blocking]
  service.detach_volume(id, attrs)
end

#interfacesObject



55
56
57
58
59
60
# File 'lib/fog/ovirt/models/compute/server.rb', line 55

def interfaces
  @interfaces ||= id.nil? ? [] : Fog::Compute::Ovirt::Interfaces.new(
    :service => service,
    :vm => self
  )
end

#locked?Boolean

Returns:

  • (Boolean)


42
43
44
45
# File 'lib/fog/ovirt/models/compute/server.rb', line 42

def locked?
  @volumes = nil # force reload volumes
  !!(status =~ /locked/i) || (attributes[:volumes] = nil) || volumes.any? { |v| !!(v.status =~ /locked/i) }
end

#macObject



51
52
53
# File 'lib/fog/ovirt/models/compute/server.rb', line 51

def mac
  interfaces.first.mac unless interfaces.empty?
end

#ready?Boolean

Returns:

  • (Boolean)


38
39
40
# File 'lib/fog/ovirt/models/compute/server.rb', line 38

def ready?
  status !~ /down/i
end

#reboot(options = {}) ⇒ Object



142
143
144
145
146
147
148
# File 'lib/fog/ovirt/models/compute/server.rb', line 142

def reboot(options = {})
  unless stopped?
    stop
    wait_for { stopped? }
  end
  start options.merge(:blocking => true)
end

#remove_from_affinity_group(attrs) ⇒ Object



114
115
116
117
# File 'lib/fog/ovirt/models/compute/server.rb', line 114

def remove_from_affinity_group(attrs)
  wait_for { stopped? } if attrs[:blocking]
  service.remove_from_affinity_group(id, attrs)
end

#saveObject



175
176
177
178
179
180
181
182
# File 'lib/fog/ovirt/models/compute/server.rb', line 175

def save
  if persisted?
    service.update_vm(attributes)
  else
    self.id = service.create_vm(attributes).id
  end
  reload
end

#start(options = {}) ⇒ Object



119
120
121
122
# File 'lib/fog/ovirt/models/compute/server.rb', line 119

def start(options = {})
  wait_for { !locked? } if options[:blocking]
  vm_power_action(:start)
end

#start_with_cloudinit(options = {}) ⇒ Object

rubocop:disable Metrics/AbcSize



125
126
127
128
129
130
131
132
133
134
135
# File 'lib/fog/ovirt/models/compute/server.rb', line 125

def start_with_cloudinit(options = {})
  wait_for { !locked? } if options[:blocking]
  user_data = if options[:use_custom_script]
                { :custom_script => options[:user_data] }
              else
                Hash[YAML.safe_load(options[:user_data]).map { |a| [a.first.to_sym, a.last] }]
              end
  action_status = service.vm_start_with_cloudinit(:id => id, :user_data => user_data)
  reload
  action_status
end

#stop(_options = {}) ⇒ Object

rubocop:enable Metrics/AbcSize



138
139
140
# File 'lib/fog/ovirt/models/compute/server.rb', line 138

def stop(_options = {})
  vm_power_action(:stop)
end

#stopped?Boolean

Returns:

  • (Boolean)


47
48
49
# File 'lib/fog/ovirt/models/compute/server.rb', line 47

def stopped?
  status.casecmp("down").zero?
end

#suspend(_options = {}) ⇒ Object



150
151
152
# File 'lib/fog/ovirt/models/compute/server.rb', line 150

def suspend(_options = {})
  vm_power_action(:suspend)
end

#ticket(options = {}) ⇒ Object



170
171
172
173
# File 'lib/fog/ovirt/models/compute/server.rb', line 170

def ticket(options = {})
  raise ::Fog::Ovirt::Errors::OvirtError, "Can not set console ticket, Server is not ready. Server status: #{status}" unless ready?
  service.vm_ticket(id, options)
end

#to_sObject



184
185
186
# File 'lib/fog/ovirt/models/compute/server.rb', line 184

def to_s
  name
end

#update_interface(attrs) ⇒ Object



67
68
69
70
# File 'lib/fog/ovirt/models/compute/server.rb', line 67

def update_interface(attrs)
  wait_for { stopped? } if attrs[:blocking]
  service.update_interface(id, attrs)
end

#update_volume(attrs) ⇒ Object



94
95
96
97
# File 'lib/fog/ovirt/models/compute/server.rb', line 94

def update_volume(attrs)
  wait_for { stopped? } if attrs[:blocking]
  service.update_volume(id, attrs)
end

#vm_power_action(action) ⇒ Object



154
155
156
157
158
# File 'lib/fog/ovirt/models/compute/server.rb', line 154

def vm_power_action(action)
  action_status = service.vm_action(:id => id, :action => action)
  reload
  action_status
end

#volumesObject



77
78
79
80
81
82
# File 'lib/fog/ovirt/models/compute/server.rb', line 77

def volumes
  @volumes ||= id.nil? ? [] : Fog::Compute::Ovirt::Volumes.new(
    :service => service,
    :vm => self
  )
end