Sha256: 0d2e0c354a4823593fe6d87b440965237a585fb664c656ac328fb511014764c4

Contents?: true

Size: 1.17 KB

Versions: 30

Compression:

Stored size: 1.17 KB

Contents

require 'ey-core/cli/subcommand'

module Ey
  module Core
    module Cli
      module Web
        class Restart < Ey::Core::Cli::Subcommand
          title "restart"
          summary "Restart all application servers in an environment"

          option :environment,
            short: "e",
            long: "environment",
            description: "Name or id of the environment to deploy to.",
            argument: "environment"

          option :account,
            short: "c",
            long: "account",
            description: "Name or id of the account that the environment resides in.",
            argument: "account"

          def handle
            operator, environment = core_operator_and_environment_for(options)

            puts "Restarting application servers in #{environment.name}".green

            request = environment.restart_app_servers
            request.wait_for { |r| r.ready? }

            if request.successful
              puts "Successfully restarted application servers".green
            else
              puts "Restarting application servers has failed".red
              ap request
            end
          end
        end
      end
    end
  end
end

Version data entries

30 entries across 30 versions & 2 rubygems

Version Path
ey-core-3.6.0.autoscaling1 lib/ey-core/cli/web/restart.rb
ey-core-3.6.4 lib/ey-core/cli/web/restart.rb
ey-core-3.6.3 lib/ey-core/cli/web/restart.rb
ey-core-3.6.1 lib/ey-core/cli/web/restart.rb
groove-ey-core-3.6.3 lib/ey-core/cli/web/restart.rb
groove-ey-core-3.6.2 lib/ey-core/cli/web/restart.rb
groove-ey-core-3.6.1 lib/ey-core/cli/web/restart.rb
ey-core-3.5.0 lib/ey-core/cli/web/restart.rb
ey-core-3.4.4 lib/ey-core/cli/web/restart.rb
ey-core-3.4.2 lib/ey-core/cli/web/restart.rb
ey-core-3.4.1 lib/ey-core/cli/web/restart.rb
ey-core-3.4.0 lib/ey-core/cli/web/restart.rb
ey-core-3.3.1 lib/ey-core/cli/web/restart.rb
ey-core-3.3.0 lib/ey-core/cli/web/restart.rb
ey-core-3.2.6 lib/ey-core/cli/web/restart.rb
ey-core-3.2.5 lib/ey-core/cli/web/restart.rb
ey-core-3.2.4 lib/ey-core/cli/web/restart.rb
ey-core-3.2.3 lib/ey-core/cli/web/restart.rb
ey-core-3.2.2 lib/ey-core/cli/web/restart.rb
ey-core-3.2.1 lib/ey-core/cli/web/restart.rb