Class: Ufo::Task

Inherits:
Object
  • Object
show all
Includes:
AwsService, Util
Defined in:
lib/ufo/task.rb

Instance Method Summary collapse

Methods included from AwsService

#cloudwatchlogs, #ecr, #ecs, #elb

Methods included from Util

#default_cluster, #default_params, #display_params, #execute, #pretty_time, #settings

Constructor Details

#initialize(task_definition, options) ⇒ Task

Returns a new instance of Task.



6
7
8
9
10
# File 'lib/ufo/task.rb', line 6

def initialize(task_definition, options)
  @task_definition = task_definition
  @options = options
  @cluster = @options[:cluster] || default_cluster
end

Instance Method Details

#runObject



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/ufo/task.rb', line 12

def run
  puts "Running task_definition: #{@task_definition}".colorize(:green) unless @options[:mute]
  return if @options[:noop]

  task_options = {
    cluster: @cluster,
    task_definition: @task_definition
  }
  task_options = task_options.merge(default_params[:run_task] || {})

  if @options[:command]
    task_options.merge!(overrides: overrides)
    puts "Running task with container overrides."
    puts "Command: #{@options[:command].join(' ')}"
  end

  unless @options[:mute]
    puts "Running task with params:"
    display_params(task_options)
  end
  resp = ecs.run_task(task_options)
  puts "Task ARN: #{resp.tasks[0].task_arn}" unless @options[:mute]
end