diff --git a/app/views/foreman/job_templates/bootc_action.erb b/app/views/foreman/job_templates/bootc_action.erb new file mode 100644 index 00000000000..38a43592d89 --- /dev/null +++ b/app/views/foreman/job_templates/bootc_action.erb @@ -0,0 +1,24 @@ +<%# +kind: job_template +name: Bootc Action - Script Default +model: JobTemplate +job_category: Katello +description_format: 'bootc %{action} %{options}' +provider_type: script +template_inputs: +- name: action + description: 'The bootc action: upgrade, switch or rollback' + input_type: user + options: "upgrade\nswitch\nrollback" + required: true +- name: options + description: Additional options for bootc action + input_type: user + required: false +- name: target + description: Target for bootc action + input_type: user + required: true +%> + +bootc <%= input('action') %> <%= input('options') %> <%= input('target') %> diff --git a/app/views/foreman/job_templates/bootc_rollback.erb b/app/views/foreman/job_templates/bootc_rollback.erb new file mode 100644 index 00000000000..9a24dc9b480 --- /dev/null +++ b/app/views/foreman/job_templates/bootc_rollback.erb @@ -0,0 +1,13 @@ +<%# +kind: job_template +name: Bootc Rollback - Katello Script Default +job_category: Katello +description_format: 'bootc rollback' +feature: katello_bootc_rollback +provider_type: script +foreign_input_sets: +- template: Bootc Action - Script Default + exclude: action, options, target +%> + +<%= render_template('Bootc Action - Script Default', :action => 'rollback') %> diff --git a/app/views/foreman/job_templates/bootc_status.erb b/app/views/foreman/job_templates/bootc_status.erb new file mode 100644 index 00000000000..dc1244ad58e --- /dev/null +++ b/app/views/foreman/job_templates/bootc_status.erb @@ -0,0 +1,13 @@ +<%# +kind: job_template +name: Bootc Status - Katello Script Default +job_category: Katello +description_format: 'bootc status %{options}' +feature: katello_bootc_status +provider_type: script +foreign_input_sets: +- template: Bootc Action - Script Default + exclude: action, target +%> + +<%= render_template('Bootc Action - Script Default', :action => 'status') %> diff --git a/app/views/foreman/job_templates/bootc_switch.erb b/app/views/foreman/job_templates/bootc_switch.erb new file mode 100644 index 00000000000..e5ece63db42 --- /dev/null +++ b/app/views/foreman/job_templates/bootc_switch.erb @@ -0,0 +1,13 @@ +<%# +kind: job_template +name: Bootc Switch - Katello Script Default +job_category: Katello +description_format: 'bootc switch %{options} %{target}' +feature: katello_bootc_switch +provider_type: script +foreign_input_sets: +- template: Bootc Action - Script Default + exclude: action +%> + +<%= render_template('Bootc Action - Script Default', :action => 'switch') %> diff --git a/app/views/foreman/job_templates/bootc_upgrade.erb b/app/views/foreman/job_templates/bootc_upgrade.erb new file mode 100644 index 00000000000..e726a870385 --- /dev/null +++ b/app/views/foreman/job_templates/bootc_upgrade.erb @@ -0,0 +1,13 @@ +<%# +kind: job_template +name: Bootc Upgrade - Katello Script Default +job_category: Katello +description_format: 'bootc upgrade %{options}' +feature: katello_bootc_upgrade +provider_type: script +foreign_input_sets: +- template: Bootc Action - Script Default + exclude: action, target +%> + +<%= render_template('Bootc Action - Script Default', :action => 'upgrade') %> diff --git a/lib/katello/plugin.rb b/lib/katello/plugin.rb index 4c5ee25098e..329666193a8 100644 --- a/lib/katello/plugin.rb +++ b/lib/katello/plugin.rb @@ -696,6 +696,9 @@ def katello_template_setting_values(name) RemoteExecutionFeature.register(:katello_module_stream_action, N_("Katello: Module Stream Actions"), :description => N_("Perform a module stream action via Katello interface"), :provided_inputs => ['action', 'module_spec', 'options']) + RemoteExecutionFeature.register(:katello_bootc_upgrade, N_("Katello: Bootc Upgrade"), :description => N_("Bootc upgrade via Katello interface"), :provided_inputs => ['options']) + RemoteExecutionFeature.register(:katello_bootc_switch, N_("Katello: Bootc Switch"), :description => N_("Bootc switch via Katello interface"), :provided_inputs => ['options,target']) + RemoteExecutionFeature.register(:katello_bootc_rollback, N_("Katello: Bootc Rollback"), :description => N_("Bootc rollback via Katello interface"), :provided_inputs => []) allowed_template_helpers :errata RemoteExecutionProvider.singleton_class.prepend(Katello::Concerns::RemoteExecutionProviderExtensions)