Repository URL to install this package:
Version:
6.0.0 ▾
|
.. |
changelogs |
meta |
plugins |
CHANGELOG.rst |
CODE-OF-CONDUCT.md |
COPYING |
FILES.json |
MANIFEST.json |
Makefile |
README.md |
SECURITY.md |
ansible-collection-containers-podman.spec |
galaxy.yml.in |
setup.cfg |
setup.py |
This repo hosts the containers.podman
Ansible Collection.
The collection includes the Podman container plugins to help the build and management of Podman containers.
For collection versions that are parts of Ansible releases, the documentation can be found on Ansible docs site: https://docs.ansible.com/ansible/latest/collections/containers/podman
The latest documentation for current collection version in the repository is hosted on github.io docs site: https://containers.github.io/ansible-podman-collections.
Before using the Podman collection, you need to install the collection with the ansible-galaxy
CLI:
ansible-galaxy collection install containers.podman
You can also include it in a requirements.yml
file and install it via
ansible-galaxy collection install -r requirements.yml
using the format:
collections: - name: containers.podman
or clone by your own:
mkdir -p ~/.ansible/collections/ansible_collections/containers git clone https://github.com/containers/ansible-podman-collections.git ~/.ansible/collections/ansible_collections/containers/podman
To use a module from Podman collection, please reference the full namespace, collection name, and modules name that you want to use:
--- - name: Using Podman collection hosts: localhost tasks: - name: Run redis container containers.podman.podman_container: name: myredis image: redis command: redis-server --appendonly yes state: present recreate: yes expose: - 6379 volumes_from: - mydata
Or you can add full namespace and collection name in the collections
element:
--- - name: Using Podman collection hosts: localhost collections: - containers.podman tasks: - name: Build and push an image using existing credentials podman_image: name: nginx path: /path/to/build/dir push: yes push_args: dest: quay.io/acme
We are accepting Github pull requests and issues. There are many ways in which you can participate in the project, for example:
If you want to develop new content for this collection or improve what is already
here, the easiest way to work on the collection is to clone it into one of the configured
COLLECTIONS_PATHS
,
and work on it there.
ansible-test
We use ansible-test
for sanity.
TBD
Please submit Github issues for communication any issues.
You can ask Podman related questions on #podman
channel of Ansible Podman questions
on #ansible-podman
channel on Freenode IRC.
GPL-3.0-or-later