Module: OpsWorks::CLI::Subcommands::Update

Included in:
Agent
Defined in:
lib/opsworks/cli/subcommands/update.rb

Class Method Summary collapse

Class Method Details

.included(thor) ⇒ Object

rubocop:disable MethodLength rubocop:disable CyclomaticComplexity



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# File 'lib/opsworks/cli/subcommands/update.rb', line 10

def self.included(thor)
  thor.class_eval do
    include Helpers::Keychain
    include Helpers::Options

    desc 'update [--stack STACK]', 'Update OpsWorks custom cookbooks'
    option :stack, type: :array
    option :timeout, type: :numeric, default: 300
    def update
      fetch_keychain_credentials unless env_credentials?
      stacks = parse_stacks(options.merge(active: true))
      deployments = stacks.map do |stack|
        say "Updating #{stack.name}..."
        stack.update_custom_cookbooks
      end
      OpsWorks::Deployment.wait(deployments, options[:timeout])
      unless deployments.all?(&:success?)
        failures = []
        deployments.each_with_index do |deployment, i|
          failures << stacks[i].name unless deployment.success?
        end
        fail "Update failed on #{failures.join(', ')}"
      end
    end
  end
end