Class: Chef::Knife::CloudstackServerStart
- Inherits:
-
Chef::Knife
- Object
- Chef::Knife
- Chef::Knife::CloudstackServerStart
- Includes:
- CloudstackBase
- Defined in:
- lib/chef/knife/cloudstack_server_start.rb
Instance Method Summary collapse
Methods included from CloudstackBase
#connection, included, #locate_config_value, #msg_pair, #validate!
Instance Method Details
#run ⇒ Object
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/chef/knife/cloudstack_server_start.rb', line 28 def run if @name_args.nil? || @name_args.empty? puts "#{ui.color("Please provide an Instance ID.", :red)}" end @name_args.each do |instance_id| response = connection.list_virtual_machines('name' => instance_id) instance_name = response['listvirtualmachinesresponse']['virtualmachine'].first['name'] instance_ip = response['listvirtualmachinesresponse']['virtualmachine'].first['nic'].first['ipaddress'] real_instance_id = response['listvirtualmachinesresponse']['virtualmachine'].first['id'] puts "#{ui.color("Name", :green)}: #{instance_name}" puts "#{ui.color("Public IP", :green)}: #{instance_ip}" puts "\n" confirm("#{ui.color("Do you really want to start this server", :green)}") if locate_config_value(:force) server = connection.start_virtual_machine('id' => real_instance_id, 'forced' => true) else server = connection.start_virtual_machine('id' => real_instance_id) end jobid = server['startvirtualmachineresponse'].fetch('jobid') server_start = connection.query_async_job_result('jobid'=>jobid) print "#{ui.color("Waiting for server", :magenta)}" while server_start['queryasyncjobresultresponse'].fetch('jobstatus') != 1 print "#{ui.color(".", :magenta)}" sleep(1) server_start = connection.query_async_job_result('jobid'=>jobid) end puts "\n\n" ui.warn("Started server #{instance_name}") end end |