Class: Bcome::Orchestrator::Recipe

Inherits:
Object
  • Object
show all
Includes:
ValidateAndSet
Defined in:
lib/orchestrator/recipe.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from ValidateAndSet

#validate_and_set

Constructor Details

#initialize(json, node_targets, all_machines, direct_commands) ⇒ Recipe

Returns a new instance of Recipe.



28
29
30
31
# File 'lib/orchestrator/recipe.rb', line 28

def initialize(json, node_targets, all_machines, direct_commands)
  validate_and_set(json)
  set_command_groups(json, node_targets, all_machines, direct_commands)        
end

Instance Attribute Details

#bootstrapObject (readonly)

Returns the value of attribute bootstrap.



24
25
26
# File 'lib/orchestrator/recipe.rb', line 24

def bootstrap
  @bootstrap
end

#command_groupsObject (readonly)

Returns the value of attribute command_groups.



24
25
26
# File 'lib/orchestrator/recipe.rb', line 24

def command_groups
  @command_groups
end

#descriptionObject (readonly)

Returns the value of attribute description.



24
25
26
# File 'lib/orchestrator/recipe.rb', line 24

def description
  @description
end

#recipe_identifierObject (readonly)

Returns the value of attribute recipe_identifier.



24
25
26
# File 'lib/orchestrator/recipe.rb', line 24

def recipe_identifier
  @recipe_identifier
end

Class Method Details

.as_menu_items(stack_level_instance) ⇒ Object



18
19
20
# File 'lib/orchestrator/recipe.rb', line 18

def as_menu_items(stack_level_instance)
  stack_level_instance.recipes.collect {|recipe| { :command => recipe.recipe_identifier, :description => recipe.description } }
end

.by_identifier(identifier, stack_level_instance) ⇒ Object



13
14
15
16
# File 'lib/orchestrator/recipe.rb', line 13

def by_identifier(identifier, stack_level_instance)
  all_recipes = stack_level_instance.recipes
  return all_recipes.select{|recipe| recipe.recipe_identifier == identifier }.first
end

.execute!(params) ⇒ Object



5
6
7
8
9
10
11
# File 'lib/orchestrator/recipe.rb', line 5

def execute!(params)
  raise "No recipe name provided" unless params && params.is_a?(Hash) && params[:name]
  recipe = by_identifier(params[:name])
  raise "No recipe found matching #{params[:name]}" unless recipe
  recipe.execute!
  return
end

Instance Method Details

#as_bootstrapObject



49
50
51
# File 'lib/orchestrator/recipe.rb', line 49

def as_bootstrap
  bootstrap ? true : false
end

#execute!(current_context_machines) ⇒ Object



41
42
43
44
45
46
47
# File 'lib/orchestrator/recipe.rb', line 41

def execute!(current_context_machines)
  @command_groups.each do |command_group|
    puts "\nExecuting command group".informational
    command_group.execute!(current_context_machines, as_bootstrap)
    puts "\n" 
  end
end

#json_attributesObject



33
34
35
# File 'lib/orchestrator/recipe.rb', line 33

def json_attributes
  [:recipe_identifier, :description, :bootstrap]
end

#optional_json_attributesObject



37
38
39
# File 'lib/orchestrator/recipe.rb', line 37

def optional_json_attributes
  [:bootstrap]
end

#set_command_groups(json, node_targets, all_machines, direct_commands) ⇒ Object



53
54
55
56
57
# File 'lib/orchestrator/recipe.rb', line 53

def set_command_groups(json, node_targets, all_machines, direct_commands)
  commands_json = json[:commands]
  raise "Expecting commands within an Orchestrator recipe as an Array" unless commands_json.is_a?(Array)
  @command_groups = ::Bcome::Orchestrator::Factory.create_command_groups_from_json(commands_json, node_targets, all_machines, direct_commands)
end