Class: Kontena::Cli::Apps::RemoveCommand
- Inherits:
-
Kontena::Command
- Object
- Kontena::Command
- Kontena::Cli::Apps::RemoveCommand
- Includes:
- Common, Common, GridOptions
- Defined in:
- lib/kontena/cli/apps/remove_command.rb
Instance Attribute Summary collapse
-
#services ⇒ Object
readonly
Returns the value of attribute services.
Instance Method Summary collapse
Methods included from Common
#abort_on_validation_errors, #app_json, #create_yml, #current_dir, #display_notifications, #generate_services, #hint_on_validation_notifications, #prefixed_name, #project_name_from_yaml, #read_yaml, #require_config_file, #service_exists?, #service_prefix, #services_from_yaml, #set_env_variables, #token, #valid_addons
Instance Attribute Details
#services ⇒ Object (readonly)
Returns the value of attribute services.
15 16 17 |
# File 'lib/kontena/cli/apps/remove_command.rb', line 15 def services @services end |
Instance Method Details
#execute ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/kontena/cli/apps/remove_command.rb', line 17 def execute require_api_url require_token require_config_file(filename) confirm unless forced? @services = services_from_yaml(filename, service_list, service_prefix, true) if services.size > 0 remove_services(services) elsif !service_list.empty? puts "No such service: #{service_list.join(', ')}".colorize(:red) end end |