Sha256: 5f80c159d23bfe823026b31d5d0b9480d9d069aee013d3f54e07541601832f87

Contents?: true

Size: 1.73 KB

Versions: 12

Compression:

Stored size: 1.73 KB

Contents

require 'trollop'

module SimpleDeploy
  module CLI
    class Update
      def update
        opts = Trollop::options do
          version SimpleDeploy::VERSION
          banner <<-EOS

Update the attributes for one more stacks.

simple_deploy update -n STACK_NAME1 -n STACK_NAME2 -e ENVIRONMENT -a KEY1=VAL1 -a KEY2=VAL2

EOS
          opt :help, "Display Help"
          opt :attributes, "= seperated attribute and it's value", :type  => :string,
                                                                   :multi => true
          opt :environment, "Set the target environment", :type => :string
          opt :force, "Force an update to proceed"
          opt :log_level, "Log level:  debug, info, warn, error", :type    => :string,
                                                                  :default => 'info'
          opt :name, "Stack name(s) of stack to deploy", :type => :string,
                                                         :multi => true
        end

        CLI::Shared.valid_options? :provided => opts,
                                   :required => [:environment, :name]

        config = Config.new.environment opts[:environment]

        logger = SimpleDeployLogger.new :log_level => opts[:log_level]

        attributes = CLI::Shared.parse_attributes :attributes => opts[:attributes],
                                                  :logger     => logger

        opts[:name].each do |name|
          stack = Stack.new :environment => opts[:environment],
                            :name        => name,
                            :config      => config,
                            :logger      => logger
          stack.update :force => opts[:force], :attributes => attributes
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
simple_deploy-0.6.4 lib/simple_deploy/cli/update.rb
simple_deploy-0.6.3 lib/simple_deploy/cli/update.rb
simple_deploy-0.6.2 lib/simple_deploy/cli/update.rb
simple_deploy-0.6.1 lib/simple_deploy/cli/update.rb
simple_deploy-0.6.0 lib/simple_deploy/cli/update.rb
simple_deploy-0.5.6 lib/simple_deploy/cli/update.rb
simple_deploy-0.5.5 lib/simple_deploy/cli/update.rb
simple_deploy-0.5.4 lib/simple_deploy/cli/update.rb
simple_deploy-0.5.3 lib/simple_deploy/cli/update.rb
simple_deploy-0.5.2 lib/simple_deploy/cli/update.rb
simple_deploy-0.5.1 lib/simple_deploy/cli/update.rb
simple_deploy-0.5.0 lib/simple_deploy/cli/update.rb