Sha256: 8652b14d60296660fbd109479002fccbae95ca1e5eaee136ed4a3d5a711c8e40
Contents?: true
Size: 1.7 KB
Versions: 2
Compression:
Stored size: 1.7 KB
Contents
module Nucleon module Action module Node class Start < CORL.plugin_class(:nucleon, :cloud_action) #----------------------------------------------------------------------------- # Info def self.describe super(:node, :start, 585) end #----------------------------------------------------------------------------- # Settings def configure super do register :start_nodes, :array, nil do |values| if values.nil? warn('corl.actions.start.errors.start_nodes_empty') next false end node_plugins = CORL.loaded_plugins(:CORL, :node) success = true values.each do |value| if info = CORL.plugin_class(:CORL, :node).translate_reference(value) if ! node_plugins.keys.include?(info[:provider].to_sym) || info[:name].empty? warn('corl.actions.start.errors.start_nodes', { :value => value, :node_provider => info[:provider], :name => info[:name] }) success = false end end end success end end end #--- def ignore [ :nodes ] end def arguments [ :start_nodes ] end #----------------------------------------------------------------------------- # Operations def execute super do |local_node, network| ensure_network(network) do batch_success = network.batch(settings[:start_nodes], settings[:node_provider], settings[:parallel]) do |node| info('corl.actions.start.start', { :provider => node.plugin_provider, :name => node.plugin_name }) node.start end myself.status = code.batch_error unless batch_success end end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
corl-0.5.1 | lib/nucleon/action/node/start.rb |
corl-0.5.0 | lib/nucleon/action/node/start.rb |