Red Hat Satellite engineering is moving the tracking of its product development work on Satellite to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "Satellite project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs will be migrated starting at the end of May. If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "Satellite project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/SAT-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Bug 2055979 - [RFE] - use native Ansible module for Install from git job template
Summary: [RFE] - use native Ansible module for Install from git job template
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Satellite
Classification: Red Hat
Component: Provisioning Templates
Version: 6.11.0
Hardware: All
OS: All
unspecified
medium
Target Milestone: 6.12.0
Assignee: satellite6-bugs
QA Contact: sganar
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2022-02-18 05:20 UTC by Nagoor Shaik
Modified: 2022-11-16 13:33 UTC (History)
3 users (show)

Fixed In Version:
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed: 2022-11-16 13:33:27 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Foreman Issue Tracker 34652 0 Normal New Use native git ansible module for cloning git repos 2022-03-21 07:51:09 UTC
Red Hat Issue Tracker SAT-8411 0 None None None 2022-02-21 12:13:19 UTC
Red Hat Product Errata RHSA-2022:8506 0 None None None 2022-11-16 13:33:37 UTC

Description Nagoor Shaik 2022-02-18 05:20:20 UTC
Description of problem:
Currently "Ansible Roles - Install from git" job template uses the `command` module for cloning git repos. We should be using the native "git" ansible module for idempotency.

Version-Release number of selected component (if applicable):
All supported Satellite versions

How reproducible:
100%

Steps to Reproduce:

Check the "Ansible Roles - Install from git" role code

~~~
---
- hosts: all
  tasks:
    - command: git clone <%= input('git_repository') %> <%= input('location') %>
      register: out
    - debug: var=out
~~~


Actual results:
Command module is currently in use

Expected results:
We should be using the git module https://docs.ansible.com/ansible/2.9/modules/git_module.html

Additional info:

Comment 2 Bryan Kearney 2022-03-29 08:04:50 UTC
Moving this bug to POST for triage into Satellite since the upstream issue https://projects.theforeman.org/issues/34652 has been resolved.

Comment 3 Adam Ruzicka 2022-04-26 15:12:32 UTC
This is fixed in upstream, do we want to pull it in?

Comment 4 Marek Hulan 2022-04-26 15:28:00 UTC
I'd say it's a low prio and can wait for a regular rebase.

Comment 5 sganar 2022-08-01 14:20:59 UTC
Verified.

Tested on Satellite 6.12.0 Snap 4.0

Observation: 
"Ansible Roles - Install from git" now uses the  "git" ansible module

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

    - debug: var=out
~~~

Comment 9 errata-xmlrpc 2022-11-16 13:33:27 UTC
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.

For information on the advisory (Important: Satellite 6.12 Release), and where to find the updated
files, follow the link below.

If the solution does not work for you, open a new bug report.

https://access.redhat.com/errata/RHSA-2022:8506


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