Sha256: 6d549e0705042bb8f9cad47a08c3a88b67995404595ca773f9168ee3839a63de

Contents?: true

Size: 1.65 KB

Versions: 10

Compression:

Stored size: 1.65 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 :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 :attributes => attributes
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
simple_deploy-0.4.8 lib/simple_deploy/cli/update.rb
simple_deploy-0.4.7 lib/simple_deploy/cli/update.rb
simple_deploy-0.4.6 lib/simple_deploy/cli/update.rb
simple_deploy-0.4.5 lib/simple_deploy/cli/update.rb
simple_deploy-0.4.5.rc.0 lib/simple_deploy/cli/update.rb
simple_deploy-0.4.4 lib/simple_deploy/cli/update.rb
simple_deploy-0.4.3 lib/simple_deploy/cli/update.rb
simple_deploy-0.4.2 lib/simple_deploy/cli/update.rb
simple_deploy-0.4.1 lib/simple_deploy/cli/update.rb
simple_deploy-0.4.0 lib/simple_deploy/cli/update.rb