Class: Kontena::Cli::Master::ListCommand

Inherits:
Kontena::Command show all
Includes:
Common, TableGenerator::Helper
Defined in:
lib/kontena/cli/master/list_command.rb

Instance Attribute Summary

Attributes inherited from Kontena::Command

#arguments, #exit_code, #result

Instance Method Summary collapse

Methods included from TableGenerator::Helper

#generate_table, included, #print_table, #table_generator

Methods included from Common

#access_token=, #add_master, #any_key_to_continue, #any_key_to_continue_with_timeout, #api_url, #api_url=, #caret, #clear_current_grid, #client, #cloud_auth?, #cloud_client, #config, #confirm, #confirm_command, #current_grid, #current_master_index, #debug?, #display_account_login_info, #display_login_info, display_logo, #display_master_login_info, #error, exit_with_error, #kontena_account, #logger, #pastel, #print, #prompt, #puts, #require_api_url, #require_token, #reset_client, #reset_cloud_client, #running_quiet?, #running_silent?, #running_verbose?, #spin_if, #spinner, #sprint, #sputs, #stdin_input, #use_refresh_token, #vfakespinner, #vputs, #vspinner, #warning

Methods inherited from Kontena::Command

banner, callback_matcher, #help_requested?, inherited, #instance, load_subcommand, requires_current_account_token, requires_current_account_token?, requires_current_grid, requires_current_grid?, requires_current_master, requires_current_master?, requires_current_master_token, requires_current_master_token?, #run, #run_callbacks, #verify_current_account_token, #verify_current_grid, #verify_current_master, #verify_current_master_token

Instance Method Details

#current_master_nameObject



10
11
12
# File 'lib/kontena/cli/master/list_command.rb', line 10

def current_master_name
  @current_master_name ||= current_master.nil? ? nil : current_master.name
end

#executeObject



20
21
22
# File 'lib/kontena/cli/master/list_command.rb', line 20

def execute
  print_table(config.servers, fields, &method(:mark_if_current))
end

#fieldsObject



6
7
8
# File 'lib/kontena/cli/master/list_command.rb', line 6

def fields
  @fields ||= quiet? ? %w(name) : %w(name url)
end

#mark_if_current(row) ⇒ Object



14
15
16
17
18
# File 'lib/kontena/cli/master/list_command.rb', line 14

def mark_if_current(row)
  unless quiet?
    row.name.to_s.insert(0, pastel.yellow('* ')) if row.name == current_master_name
  end
end