Module: Aptible::CLI::Subcommands::Apps

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

Class Method Summary collapse

Class Method Details

.included(thor) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/aptible/cli/subcommands/apps.rb', line 5

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

    desc 'apps', 'List all applications'
    option :environment
    def apps
      scoped_environments(options).each do |env|
        say "=== #{env.handle}"
        env.apps.each do |app|
          say app.handle
        end
        say ''
      end
    end

    desc 'apps:create HANDLE', 'Create a new application'
    option :environment
    define_method 'apps:create' do |handle|
      environment = ensure_environment(options)
      app = environment.create_app(handle: handle)

      if app.errors.any?
        raise Thor::Error, app.errors.full_messages.first
      else
        say "App #{handle} created!"
        say "Git remote: #{app.git_repo}"
      end
    end

    desc 'apps:scale TYPE NUMBER', 'Scale app to NUMBER of instances'
    app_options
    option :size, type: :numeric, enum: [512,
                                         1024,
                                         2048,
                                         4096,
                                         8192,
                                         16384,
                                         32768,
                                         65536]
    define_method 'apps:scale' do |type, n|
      num = Integer(n)
      app = ensure_app(options)
      service = app.services.find { |s| s.process_type == type }
      if service.nil?
        valid_types = if app.services.empty?
                        'NONE (deploy the app first)'
                      else
                        app.services.map(&:process_type).join(', ')
                      end
        raise Thor::Error, "Service with type #{type} does not " \
                           "exist for app #{app.handle}. Valid " \
                           "types: #{valid_types}."
      end
      op = service.create_operation!(type: 'scale',
                                     container_count: num,
                                     container_size: options[:size])
      attach_to_operation_logs(op)
    end

    desc 'apps:deprovision', 'Deprovision an app'
    app_options
    define_method 'apps:deprovision' do
      app = ensure_app(options)
      say "Deprovisioning #{app.handle}..."
      app.create_operation!(type: 'deprovision')
    end
  end
end