Sha256: f1176c3156d0d7663234fc1f40dbd7d55e0085b21a850ebd89285e71a3769311

Contents?: true

Size: 1.21 KB

Versions: 14

Compression:

Stored size: 1.21 KB

Contents

require 'text-table'

module Ufo
  class Apps
    autoload :CfnMap, "ufo/apps/cfn_map"
    autoload :Service, "ufo/apps/service"

    extend Memoist
    include Stack::Helper

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

    def list
      begin
        resp = ecs.list_services(cluster: @cluster)
      rescue Aws::ECS::Errors::ClusterNotFoundException => e
        puts "ECS cluster #{@cluster.colorize(:green)} not found."
        exit 1
      end
      arns = resp.service_arns.sort

      puts "Listing ECS services in the #{@cluster.colorize(:green)} cluster."
      if arns.empty?
        puts "No ECS services found in the #{@cluster.colorize(:green)} cluster."
        return
      end

      resp = ecs.describe_services(services: arns, cluster: @cluster)
      display_info(resp)
    end

    def display_info(resp)
      table = Text::Table.new
      table.head = ["Service Name", "Task Definition", "Running", "Launch type", "Ufo?"]
      resp["services"].each do |s|
        table.rows << service_info(s)
      end
      puts table unless ENV['TEST']
    end

    # for specs
    def service_info(s)
      Service.new(s, @options).to_a
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
ufo-4.1.10 lib/ufo/apps.rb
ufo-4.1.9 lib/ufo/apps.rb
ufo-4.1.8 lib/ufo/apps.rb
ufo-4.1.7 lib/ufo/apps.rb
ufo-4.1.6 lib/ufo/apps.rb
ufo-4.1.5 lib/ufo/apps.rb
ufo-4.1.4 lib/ufo/apps.rb
ufo-4.1.2 lib/ufo/apps.rb
ufo-4.1.1 lib/ufo/apps.rb
ufo-4.1.0 lib/ufo/apps.rb
ufo-4.0.3 lib/ufo/apps.rb
ufo-4.0.2 lib/ufo/apps.rb
ufo-4.0.1 lib/ufo/apps.rb
ufo-4.0.0 lib/ufo/apps.rb