Sha256: d6b4407ae63ac0b9b187d85c6fa5864402950411279b363b52f671ce61767162

Contents?: true

Size: 1.91 KB

Versions: 17

Compression:

Stored size: 1.91 KB

Contents

require 'trollop'

module SimpleDeploy
  module CLI

    class Update
      include Shared

      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
          opt :template, "Path to a new template file", :type => :string
        end

        valid_options? :provided => @opts,
                       :required => [:environment, :name]

        SimpleDeploy.create_config @opts[:environment]
        SimpleDeploy.logger @opts[:log_level]

        attributes = parse_attributes :attributes => @opts[:attributes]

        @opts[:name].each do |name|
          stack = Stack.new :name        => name,
                            :environment => @opts[:environment]

          if @opts[:template]
            template_body = IO.read @opts[:template]
          end

          rescue_exceptions_and_exit do
            stack.update :force => @opts[:force],
                         :template_body => template_body,
                         :attributes => attributes
          end
        end
      end

      def command_summary
        'Update the attributes for one more stacks'
      end

    end

  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
simple_deploy-0.9.2 lib/simple_deploy/cli/update.rb
simple_deploy-0.9.1 lib/simple_deploy/cli/update.rb
simple_deploy-0.9.0 lib/simple_deploy/cli/update.rb
simple_deploy-0.8.2 lib/simple_deploy/cli/update.rb
simple_deploy-0.8.2.beta1 lib/simple_deploy/cli/update.rb
simple_deploy-0.8.1.beta1 lib/simple_deploy/cli/update.rb
simple_deploy-0.8.0 lib/simple_deploy/cli/update.rb
simple_deploy-0.7.8 lib/simple_deploy/cli/update.rb
simple_deploy-0.7.7 lib/simple_deploy/cli/update.rb
simple_deploy-0.7.7.beta.1 lib/simple_deploy/cli/update.rb
simple_deploy-0.7.6 lib/simple_deploy/cli/update.rb
simple_deploy-0.7.6.beta.6 lib/simple_deploy/cli/update.rb
simple_deploy-0.7.6.beta.5 lib/simple_deploy/cli/update.rb
simple_deploy-0.7.6.beta.3 lib/simple_deploy/cli/update.rb
simple_deploy-0.7.6.beta.1 lib/simple_deploy/cli/update.rb
simple_deploy-0.7.5 lib/simple_deploy/cli/update.rb
simple_deploy-0.7.4 lib/simple_deploy/cli/update.rb