Bug 2168108 - [RFE] - Switch to Ansible FQCN format for all modules in Job Templates
Summary: [RFE] - Switch to Ansible FQCN format for all modules in Job Templates
Keywords:
Status: NEW
Alias: None
Product: Red Hat Satellite
Classification: Red Hat
Component: Ansible
Version: 6.13.0
Hardware: All
OS: Linux
unspecified
medium
Target Milestone: Unspecified
Assignee: satellite6-bugs
QA Contact: Satellite QE Team
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2023-02-08 08:09 UTC by Nagoor Shaik
Modified: 2023-08-03 17:35 UTC (History)
2 users (show)

Fixed In Version:
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed:
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)

Description Nagoor Shaik 2023-02-08 08:09:16 UTC
Description of problem:
Currently all Ansible modules used in Job templates used non-fqcn format, as we switched to ansible-core 2.13.x, we should default the modules to fully-qualified collection name (FQCN) format

Version-Release number of selected component (if applicable):
Satellite 6.13

How reproducible:


Steps to Reproduce:
1. Inspect any Job templates for example "Ansible Roles - Install from git"

~~~
---
- hosts: all
  tasks:
    - git:
        repo: "<%= input('git_repository') %>"
        dest: "<%= input('location') %>"
      register: out

    - debug: var=out
~~~
   

Actual results:
all modules that we have in the Ansible related job templates uses non-FQCN format

Expected results:
All ansible modules should follow Ansible guidelines and switch to FQCN format

Additional info:
https://docs.ansible.com/ansible/latest/porting_guides/porting_guide_2.10.html


Note You need to log in before you can comment on or make changes to this bug.