Skip to content

Commit

Permalink
Fixes #38084 - Add new REX job templates for bootc upgrade/switch/rol…
Browse files Browse the repository at this point in the history
…lback
  • Loading branch information
lfu committed Dec 12, 2024
1 parent 363db98 commit 6cf6b9a
Show file tree
Hide file tree
Showing 6 changed files with 79 additions and 0 deletions.
24 changes: 24 additions & 0 deletions app/views/foreman/job_templates/bootc_action.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<%#
kind: job_template
name: Bootc Action - Katello 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, rollback or status'
input_type: user
options: "upgrade\nswitch\nrollback\nstatus"
required: true
- name: options
description: Additional options for bootc action
input_type: user
required: false
- name: target
description: Target for bootc switch action
input_type: user
required: false
%>

bootc <%= input('action') %> <%= input('options') %> <%= input('target') %>
13 changes: 13 additions & 0 deletions app/views/foreman/job_templates/bootc_rollback.erb
Original file line number Diff line number Diff line change
@@ -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') %>
13 changes: 13 additions & 0 deletions app/views/foreman/job_templates/bootc_status.erb
Original file line number Diff line number Diff line change
@@ -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') %>
13 changes: 13 additions & 0 deletions app/views/foreman/job_templates/bootc_switch.erb
Original file line number Diff line number Diff line change
@@ -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') %>
13 changes: 13 additions & 0 deletions app/views/foreman/job_templates/bootc_upgrade.erb
Original file line number Diff line number Diff line change
@@ -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') %>
3 changes: 3 additions & 0 deletions lib/katello/plugin.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 6cf6b9a

Please sign in to comment.