Module: Aptible::CLI::Subcommands::Tail

Included in:
Agent
Defined in:
lib/aptible/cli/subcommands/logs.rb

Class Method Summary collapse

Class Method Details

.included(thor) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/aptible/cli/subcommands/logs.rb', line 7

def self.included(thor)
  thor.class_eval do
    include Helpers::Operation
    include Helpers::App

    desc 'logs', 'Follows logs from a running app'
    option :app
    def logs
      app = ensure_app(options)
      host = app..bastion_host
      port = app..dumptruck_port

      ENV['ACCESS_TOKEN'] = fetch_token
      ENV['APTIBLE_APP'] = app.handle

      opts = " -o 'SendEnv=*' -o StrictHostKeyChecking=no " \
             '-o UserKnownHostsFile=/dev/null'
      Kernel.exec "ssh #{opts} -p #{port} root@#{host}"
    end
  end
end