Sha256: b2908a429fb2130427e57c0565004456d98d7f30ea61d584d02d122ab41010e6

Contents?: true

Size: 1.97 KB

Versions: 30

Compression:

Stored size: 1.97 KB

Contents

require 'ey-core/cli/subcommand'
require 'ey-core/cli/helpers/log_streaming'

module Ey
  module Core
    module Cli
      class Status < Subcommand
        include Ey::Core::Cli::Helpers::LogStreaming
        title "status"
        summary "Show the deployment status of the app"
        description <<-DESC
Show the current status of the most recent deployment of the specifed application and environment
DESC

        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.  If no account is specified, the app will deploy to the first environment that meets the criteria, in the accounts you have access to.',
          argument: 'Account name or id'

        option :app,
          short: "a",
          long: "app",
          description: "Application name or ID to deploy.  If :account is not specified, this will be the first app that matches the criteria in the accounts you have access to.",
          argument: "app"

        switch :tail,
          long: "tail",
          description: "tail in-progress deployment log"

        def handle
          operator, environment = core_operator_and_environment_for(self.options)
          app                   = core_application_for(environment, self.options)
          deploy                = environment.latest_deploy(app)

          puts environment.release_label
          puts "#{environment.servers.size} servers"
          environment.servers.each do |s|
            puts [s.provisioned_id, s.role, s.state].join(" ")
          end
          if deploy
            ap deploy
            if switch_active?(:tail)
              stream_deploy_log(deploy.request)
            end
          else
            puts "Never Deployed"
          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/status.rb
ey-core-3.6.4 lib/ey-core/cli/status.rb
ey-core-3.6.3 lib/ey-core/cli/status.rb
ey-core-3.6.1 lib/ey-core/cli/status.rb
groove-ey-core-3.6.3 lib/ey-core/cli/status.rb
groove-ey-core-3.6.2 lib/ey-core/cli/status.rb
groove-ey-core-3.6.1 lib/ey-core/cli/status.rb
ey-core-3.5.0 lib/ey-core/cli/status.rb
ey-core-3.4.4 lib/ey-core/cli/status.rb
ey-core-3.4.2 lib/ey-core/cli/status.rb
ey-core-3.4.1 lib/ey-core/cli/status.rb
ey-core-3.4.0 lib/ey-core/cli/status.rb
ey-core-3.3.1 lib/ey-core/cli/status.rb
ey-core-3.3.0 lib/ey-core/cli/status.rb
ey-core-3.2.6 lib/ey-core/cli/status.rb
ey-core-3.2.5 lib/ey-core/cli/status.rb
ey-core-3.2.4 lib/ey-core/cli/status.rb
ey-core-3.2.3 lib/ey-core/cli/status.rb
ey-core-3.2.2 lib/ey-core/cli/status.rb
ey-core-3.2.1 lib/ey-core/cli/status.rb