class ItamaeMitsurin::CLI
Public Class Methods
define_exec_options()
click to toggle source
# File lib/itamae-mitsurin/cli.rb, line 18 def self.define_exec_options option :recipe_graph, type: :string, desc: "[EXPERIMENTAL] Write recipe dependency graph in DOT", banner: "PATH" option :node_json, type: :string, aliases: ['-j'] option :node_yaml, type: :string, aliases: ['-y'] option :dry_run, type: :boolean, aliases: ['-n'] option :shell, type: :string, default: "/bin/sh" option :ohai, type: :boolean, default: false, desc: "This option is DEPRECATED and will be unavailable." option :profile, type: :string, desc: "[EXPERIMENTAL] Save profiling data", banner: "PATH" option :detailed_exitcode, type: :boolean, default: false, desc: "exit code 0 - The run succeeded with no changes or failures, exit code 1 - The run failed, exit code 2 - The run succeeded, and some resources were changed" end
new(*)
click to toggle source
Calls superclass method
# File lib/itamae-mitsurin/cli.rb, line 11 def initialize(*) super ItamaeMitsurin.logger.level = ::Logger.const_get(options[:log_level].upcase) ItamaeMitsurin.logger.formatter.colored = options[:color] end
Public Instance Methods
docker(*recipe_files)
click to toggle source
# File lib/itamae-mitsurin/cli.rb, line 67 def docker(*recipe_files) if recipe_files.empty? raise "Please specify recipe files." end run(recipe_files, :docker, options) end
local(*recipe_files)
click to toggle source
# File lib/itamae-mitsurin/cli.rb, line 33 def local(*recipe_files) if recipe_files.empty? raise "Please specify recipe files." end run(recipe_files, :local, options) end
ssh(*recipe_files)
click to toggle source
# File lib/itamae-mitsurin/cli.rb, line 50 def ssh(*recipe_files) if recipe_files.empty? raise "Please specify recipe files." end unless options[:host] || options[:vagrant] raise "Please set '-h <hostname>' or '--vagrant'" end run(recipe_files, :ssh, options) end
version()
click to toggle source
# File lib/itamae-mitsurin/cli.rb, line 76 def version puts "itamae-mitsurin v#{ItamaeMitsurin::VERSION}" end
Private Instance Methods
options()
click to toggle source
Calls superclass method
# File lib/itamae-mitsurin/cli.rb, line 81 def options @itamae_options ||= super.dup.tap do |options| if config = options[:config] options.merge!(YAML.load_file(config)) end end end
run(recipe_files, backend_type, options)
click to toggle source
# File lib/itamae-mitsurin/cli.rb, line 89 def run(recipe_files, backend_type, options) runner = Runner.run(recipe_files, backend_type, options) if options[:detailed_exitcode] && runner.diff? exit 2 end end