ansible-podman-collections
ansible-podman-collections copied to clipboard
Repository for Ansible content that can include playbooks, roles, modules, and plugins for use with the Podman tool
Saved images are always changed (checksum varies) when forced (i.e. removed then re-saved). Test case added. Fixes #826
Skip empty volume items with `podman image build`: ```yaml - containers.podman.podman_image: name: myimage path: /tmp/myimage build: volume: - "{{ '/tmp/whatever:/mnt/whatever' if false }}" # results in "" (empty string), which...
Is this a BUG REPORT or FEATURE REQUEST? (leave only one on its own line) /kind bug **Description** RELOGGING 736 as it had the information in. Podman version on the...
Fix #831 Signed-off-by: Sagi Shnaidman
**Is this a BUG REPORT or FEATURE REQUEST? (leave only one on its own line)** /kind bug **Description** When a Quadlet file is written, the "Label=" line values are not...
push_args destination now requires full path with image name and tag when default transport is used
Hello, I've been using the latest collection version (v1.15.4) with an existing playbook to build container images. When I went to push a new image today I got the following...
Fixes https://github.com/containers/ansible-podman-collections/issues/646
/kind bug **Description** The module `containers.podman.podman_container` creates a change and therefore is not idempotent when creating a pod, attaching a container to it and creating a systemd service for that...
Fix #828 Signed-off-by: Sagi Shnaidman
/kind feature **Description** Being able to use a git repository as a path (build context) when building images. https://docs.podman.io/en/latest/markdown/podman-build.1.html#building-an-image-using-a-git-repository ```yaml - containers.podman.podman_image: name: my-image path: "[email protected]:bmenant/repo-with-containerfile.git" state: build ```