Class: Kontena::Cli::Cloud::Master::UpdateCommand
- Inherits:
-
Kontena::Command
- Object
- Clamp::Command
- Kontena::Command
- Kontena::Cli::Cloud::Master::UpdateCommand
- Includes:
- Kontena::Cli::Common
- Defined in:
- lib/kontena/cli/cloud/master/update_command.rb
Instance Attribute Summary
Attributes inherited from Kontena::Command
#arguments, #exit_code, #result
Instance Method Summary collapse
Methods included from Kontena::Cli::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
#execute ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/kontena/cli/cloud/master/update_command.rb', line 25 def execute attrs = get_attributes unless attrs puts pastel.red("Failed to obtain master credentials") exit 1 end attrs["name"] = self.name if self.name attrs["redirect-uri"] = self.redirect_uri if self.redirect_uri attrs["url"] = self.url if self.url attrs["provider"] = self.provider if self.provider attrs["version"] = self.version if self.version attrs["owner"] = self.owner if self.owner response = cloud_client.put( "user/masters/#{master_id}", { data: { attributes: attrs.reject{ |k, _| ['client-id', 'client-secret'].include?(k) } } } ) if response puts "Master settings updated" else puts "Request failed" exit 1 end end |
#get_attributes ⇒ Object
19 20 21 22 23 |
# File 'lib/kontena/cli/cloud/master/update_command.rb', line 19 def get_attributes cloud_client.get("user/masters/#{self.master_id}")["data"]["attributes"] rescue nil end |