Class: Kontena::Cli::Master::RemoveCommand
- Inherits:
-
Kontena::Command
- Object
- Clamp::Command
- Kontena::Command
- Kontena::Cli::Master::RemoveCommand
- Includes:
- Common
- Defined in:
- lib/kontena/cli/master/remove_command.rb
Instance Attribute Summary
Attributes inherited from Kontena::Command
#arguments, #exit_code, #result
Instance Method Summary collapse
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
#delete_servers(servers) ⇒ Object
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/kontena/cli/master/remove_command.rb', line 24 def delete_servers(servers) abort "Master not found in configuration" if servers.empty? unless forced? puts "Removing #{servers.size} master#{"s" if servers.size > 1} from configuration" confirm end config.servers.delete_if {|s| servers.include?(s) } unless config.find_server(config.current_server) puts puts "Current master was removed, to select a new current master use:" puts " " + pastel.green.on_black(" kontena master use <master_name> ") puts "Or log into another master by using:" puts " " + pastel.green.on_black(" kontena master login <master_url> ") config.current_server = nil end config.write end |
#execute ⇒ Object
46 47 48 49 50 51 52 |
# File 'lib/kontena/cli/master/remove_command.rb', line 46 def execute if self.name.nil? run_interactive else delete_servers(config.servers.select {|s| s.name == self.name}) end end |
#run_interactive ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/kontena/cli/master/remove_command.rb', line 11 def run_interactive selections = prompt.multi_select("Select masters to remove from configuration file:") do || config.servers.each do |server| .choice " #{pastel.green("* ") if config.current_server == server.name}#{server.name} (#{server.username || 'unknown'} @ #{server.url})", server end end if selections.empty? puts "No masters selected" exit 0 end delete_servers(selections) end |