mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-07-05 01:58:54 +00:00
Add podman_image and podman_image_info modules (#55103)
* Add podman_image and podman_image_info modules * Add integration test for podman_image_info * Change parameter names per feedback * Add integration tests for podman_image
This commit is contained in:
parent
e28d08a3c1
commit
c2be342ce1
14 changed files with 1150 additions and 0 deletions
13
test/integration/targets/setup_podman/tasks/main.yml
Normal file
13
test/integration/targets/setup_podman/tasks/main.yml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
- block:
|
||||
- name: Enable extras repo
|
||||
command: "{{ repo_command[ansible_facts.distribution ~ ansible_facts.distribution_major_version] | default('echo') }}"
|
||||
|
||||
- name: Install podman
|
||||
yum:
|
||||
name: podman
|
||||
state: present
|
||||
when: ansible_facts.pkg_mgr in ['yum', 'dnf']
|
||||
when:
|
||||
- ansible_facts.distribution == 'RedHat'
|
||||
- ansible_facts.virtualization_type != 'docker'
|
||||
- ansible_facts.distribution_major_version is version_compare('7', '>=')
|
||||
Loading…
Add table
Add a link
Reference in a new issue