Class: Actions::RemoteExecution::RunHostJob
- Inherits:
-
EntryAction
- Object
- EntryAction
- Actions::RemoteExecution::RunHostJob
- Includes:
- Helpers::WithContinuousOutput, Helpers::WithDelegatedAction
- Defined in:
- app/lib/actions/remote_execution/run_host_job.rb
Instance Method Summary collapse
- #check_exit_status ⇒ Object
- #continuous_output_providers ⇒ Object
-
#exit_status ⇒ Object
rubocop:enable Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity.
-
#fill_continuous_output(continuous_output) ⇒ Object
rubocop:disable Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity.
- #finalize(*args) ⇒ Object
- #humanized_input ⇒ Object
- #humanized_name ⇒ Object
- #humanized_output ⇒ Object
- #live_output ⇒ Object
- #plan(job_invocation, host, template_invocation, proxy_selector = ::RemoteExecutionProxySelector.new, options = {}) ⇒ Object
- #rescue_strategy ⇒ Object
- #resource_locks ⇒ Object
Instance Method Details
#check_exit_status ⇒ Object
55 56 57 58 |
# File 'app/lib/actions/remote_execution/run_host_job.rb', line 55 def check_exit_status error! ForemanTasks::Task::TaskCancelledException.new(_('Task cancelled')) if delegated_action && delegated_action.output[:cancel_sent] error! _('Job execution failed') if exit_status.to_s != '0' end |
#continuous_output_providers ⇒ Object
82 83 84 |
# File 'app/lib/actions/remote_execution/run_host_job.rb', line 82 def continuous_output_providers super << self end |
#exit_status ⇒ Object
rubocop:enable Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
109 110 111 |
# File 'app/lib/actions/remote_execution/run_host_job.rb', line 109 def exit_status delegated_output[:exit_status] end |
#fill_continuous_output(continuous_output) ⇒ Object
rubocop:disable Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 |
# File 'app/lib/actions/remote_execution/run_host_job.rb', line 87 def fill_continuous_output(continuous_output) delegated_output.fetch('result', []).each do |raw_output| continuous_output.add_raw_output(raw_output) end = (continuous_output. || task.ended_at).to_f + 1 if task.state == 'stopped' && task.result == 'cancelled' continuous_output.add_output(_('Job cancelled by user'), 'debug', ) else fill_planning_errors_to_continuous_output(continuous_output) unless exit_status end if exit_status continuous_output.add_output(_('Exit status: %s') % exit_status, 'stdout', ) elsif run_step && run_step.error continuous_output.add_output(_('Job finished with error') + ": #{run_step.error.exception_class} - #{run_step.error.message}", 'debug', ) end rescue => e continuous_output.add_exception(_('Error loading data from proxy'), e) end |
#finalize(*args) ⇒ Object
51 52 53 |
# File 'app/lib/actions/remote_execution/run_host_job.rb', line 51 def finalize(*args) check_exit_status end |
#humanized_input ⇒ Object
65 66 67 68 |
# File 'app/lib/actions/remote_execution/run_host_job.rb', line 65 def humanized_input N_('%{description} on %{host}') % { :host => input[:host].try(:[], :name), :description => input[:description].try(:capitalize) || input[:job_category] } end |
#humanized_name ⇒ Object
70 71 72 |
# File 'app/lib/actions/remote_execution/run_host_job.rb', line 70 def humanized_name N_('Remote action:') end |
#humanized_output ⇒ Object
78 79 80 |
# File 'app/lib/actions/remote_execution/run_host_job.rb', line 78 def humanized_output continuous_output.humanize end |
#live_output ⇒ Object
60 61 62 63 |
# File 'app/lib/actions/remote_execution/run_host_job.rb', line 60 def live_output continuous_output.sort! continuous_output.raw_outputs end |
#plan(job_invocation, host, template_invocation, proxy_selector = ::RemoteExecutionProxySelector.new, options = {}) ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 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 |
# File 'app/lib/actions/remote_execution/run_host_job.rb', line 14 def plan(job_invocation, host, template_invocation, proxy_selector = ::RemoteExecutionProxySelector.new, = {}) action_subject(host, :job_category => job_invocation.job_category, :description => job_invocation.description) template_invocation.host_id = host.id template_invocation.run_host_job_task_id = task.id template_invocation.save! link!(job_invocation) link!(template_invocation) (host, template_invocation) raise _('Could not use any template used in the job invocation') if template_invocation.blank? provider_type = template_invocation.template.provider_type.to_s proxy = determine_proxy!(proxy_selector, provider_type, host) renderer = InputTemplateRenderer.new(template_invocation.template, host, template_invocation) script = renderer.render raise _('Failed rendering template: %s') % renderer. unless script provider = template_invocation.template.provider secrets = { :ssh_password => job_invocation.password || provider.ssh_password(host), :key_passphrase => job_invocation.key_passphrase || provider.ssh_key_passphrase(host) } = { :hostname => provider.find_ip_or_hostname(host), :script => script, :execution_timeout_interval => job_invocation.execution_timeout_interval, :secrets => secrets } = provider.(template_invocation, host) .merge() plan_delegated_action(proxy, ForemanRemoteExecutionCore::Actions::RunScript, ) plan_self end |
#rescue_strategy ⇒ Object
74 75 76 |
# File 'app/lib/actions/remote_execution/run_host_job.rb', line 74 def rescue_strategy ::Dynflow::Action::Rescue::Fail end |
#resource_locks ⇒ Object
10 11 12 |
# File 'app/lib/actions/remote_execution/run_host_job.rb', line 10 def resource_locks :link end |