Class: R10K::Action::Deploy::Environment

Inherits:
Base
  • Object
show all
Includes:
DeployHelpers, Visitor
Defined in:
lib/r10k/action/deploy/environment.rb

Constant Summary

Constants included from Logging

Logging::LOG_LEVELS

Instance Attribute Summary collapse

Attributes inherited from Base

#settings

Instance Method Summary collapse

Methods included from Visitor

#visit

Methods included from DeployHelpers

#check_write_lock!, #expect_config!

Methods included from Logging

debug_formatter, default_formatter, default_outputter, #logger, #logger_name, parse_level

Constructor Details

#initialize(opts, argv, settings = nil) ⇒ Environment

Returns a new instance of Environment.



18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/r10k/action/deploy/environment.rb', line 18

def initialize(opts, argv, settings = nil)
  settings ||= {}
  @purge_levels = settings.fetch(:deploy, {}).fetch(:purge_levels, [])
  @user_purge_whitelist = settings.fetch(:deploy, {}).fetch(:purge_whitelist, [])
  @generate_types = settings.fetch(:deploy, {}).fetch(:generate_types, false)

  super

  # @force here is used to make it easier to reason about
  @force = !@no_force
  @argv = @argv.map { |arg| arg.gsub(/\W/,'_') }
end

Instance Attribute Details

#forceObject (readonly)

Returns the value of attribute force.



16
17
18
# File 'lib/r10k/action/deploy/environment.rb', line 16

def force
  @force
end

Instance Method Details

#callObject



31
32
33
34
35
36
37
38
39
40
# File 'lib/r10k/action/deploy/environment.rb', line 31

def call
  @visit_ok = true

  expect_config!
  deployment = R10K::Deployment.new(@settings)
  check_write_lock!(@settings)

  deployment.accept(self)
  @visit_ok
end