Class: Bosh::Cli::Command::JobManagement

Inherits:
Base show all
Defined in:
lib/cli/commands/job_management.rb

Constant Summary collapse

FORCE =
'Proceed even when there are other manifest changes'
SKIP_DRAIN =
'Skip running drain script'

Constants inherited from Base

Base::DEFAULT_DIRECTOR_PORT

Instance Attribute Summary

Attributes inherited from Base

#args, #exit_code, #options, #out, #runner, #work_dir

Instance Method Summary collapse

Methods inherited from Base

#add_option, #blob_manager, #blobstore, #cache_dir, #config, #confirmed?, #credentials, #deployment, #director, #initialize, #interactive?, #logged_in?, #non_interactive?, #progress_renderer, #redirect, #release, #remove_option, #show_current_state, #target, #target_name, #verbose?

Methods included from Bosh::Cli::CommandDiscovery

#desc, #method_added, #option, #register_command, #usage

Methods included from DeploymentHelper

#cancel_deployment, #deployment_changed?, #inspect_deployment_changes, #job_exists_in_deployment?, #job_must_exist_in_deployment, #job_unique_in_deployment?, #jobs_and_indexes, #prepare_deployment_manifest, #prompt_for_errand_name, #prompt_for_job_and_index

Constructor Details

This class inherits a constructor from Bosh::Cli::Command::Base

Instance Method Details

#recreate_job(job, index = nil) ⇒ Object



48
49
50
# File 'lib/cli/commands/job_management.rb', line 48

def recreate_job(job, index = nil)
  change_job_state(:recreate, job, index)
end

#restart_job(job, index = nil) ⇒ Object



39
40
41
# File 'lib/cli/commands/job_management.rb', line 39

def restart_job(job, index = nil)
  change_job_state(:restart, job, index)
end

#start_job(job, index = nil) ⇒ Object



15
16
17
# File 'lib/cli/commands/job_management.rb', line 15

def start_job(job, index = nil)
  change_job_state(:start, job, index)
end

#stop_job(job, index = nil) ⇒ Object



26
27
28
29
30
31
32
# File 'lib/cli/commands/job_management.rb', line 26

def stop_job(job, index = nil)
  if hard?
    change_job_state(:detach, job, index)
  else
    change_job_state(:stop, job, index)
  end
end