Class: Kontena::Cli::Stacks::Registry::PushCommand

Inherits:
Kontena::Command
  • Object
show all
Includes:
Common, Common
Defined in:
lib/kontena/cli/stacks/registry/push_command.rb

Instance Attribute Summary

Attributes inherited from Kontena::Command

#arguments, #exit_code, #result

Instance Method Summary collapse

Methods included from Common

#abort_on_validation_errors, #current_dir, #display_notifications, #hint_on_validation_notifications, #loader, #loader_class, #reader, #set_env_variables, #stack, #stack_name, #stacks_client

Methods included from Kontena::Cli::Services::ServicesHelper

#create_service, #delete_service, #deploy_service, #get_service, #health_status, #health_status_icon, #int_to_filesize, #parse_build_args, #parse_container_name, #parse_deploy_opts, #parse_health_check, #parse_image, #parse_links, #parse_log_opts, #parse_memory, #parse_ports, #parse_relative_time, #parse_secrets, #parse_service_id, #render_service_deploy_instances, #restart_service, #scale_service, #show_service, #show_service_containers, #show_service_instances, #start_service, #stop_service, #update_service, #wait_for_deploy_to_finish

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

#executeObject



25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/kontena/cli/stacks/registry/push_command.rb', line 25

def execute
  exit_with_error "Can only perform push from local files" unless loader.origin == "file"
  exit_with_error "Stack file contains dependencies to local files" if includes_local_dependencies?
  exit_with_error "Stack file has services that extend from local files" if includes_local_extends?

  spinner("Pushing #{pastel.cyan(source)} to stack registry as #{loader.stack_name}") do
    unless dry_run?
      stacks_client.push(
        loader.stack_name,
        loader.content
      )
    end
  end
end

#includes_local_dependencies?(dependencies = loader.dependencies) ⇒ Boolean

Returns:

  • (Boolean)


16
17
18
19
# File 'lib/kontena/cli/stacks/registry/push_command.rb', line 16

def includes_local_dependencies?(dependencies = loader.dependencies)
  return false if dependencies.nil?
  dependencies.any? { |dep| Kontena::Cli::Stacks::YAML::StackFileLoader.for(dep['stack']).origin == 'file' || includes_local_dependencies(dep['depends']) }
end

#includes_local_extends?Boolean

Returns:

  • (Boolean)


21
22
23
# File 'lib/kontena/cli/stacks/registry/push_command.rb', line 21

def includes_local_extends?
  loader.yaml.fetch('services', {}).any? { |_, svc| svc.key?('extends') && svc['extends'].key?('file') }
end