mirror of
https://github.com/containers/ansible-podman-collections.git
synced 2026-02-04 07:11:49 +00:00
Release 1.4.0 version
This commit is contained in:
parent
075d35daee
commit
27d5a718e6
3 changed files with 76 additions and 3 deletions
|
|
@ -5,6 +5,45 @@ Ansible Podman modules and plugins Release Notes
|
|||
.. contents:: Topics
|
||||
|
||||
|
||||
v1.4.0
|
||||
======
|
||||
|
||||
Release Summary
|
||||
---------------
|
||||
|
||||
New modules and bugfixes, new network options
|
||||
|
||||
Minor Changes
|
||||
-------------
|
||||
|
||||
- podman_container - Add log level for Podman in module
|
||||
- podman_container - Add mac_address field to podman_container module
|
||||
- podman_container - Add strict image compare with hashes
|
||||
- podman_container - Improve compatibility with docker_container by adding aliases
|
||||
- podman_container - Move containers logic to module utils
|
||||
- podman_image - reuse existing results in present()
|
||||
- podman_network - Add IPv6 to network
|
||||
- podman_network - Add support of network options like MTU, VLAN
|
||||
- podman_pod - Move pod logic to separate library
|
||||
|
||||
Bugfixes
|
||||
--------
|
||||
|
||||
- podman_container - Fix force restart option for containers
|
||||
- podman_container - Fix idempotency for volume GID and UID
|
||||
- podman_container - Fix no_hosts idempotency for newer version
|
||||
- podman_container - Remove 'detach' when creating container
|
||||
- podman_image - Fix doc defaults for podman_image
|
||||
- podman_logout - Handle podman logout not logging out when logged in via different tool
|
||||
- podman_network - Correct IP range example for podman_network
|
||||
|
||||
New Modules
|
||||
-----------
|
||||
|
||||
- containers.podman.podman_containers - Manage multiple Podman containers at once
|
||||
- containers.podman.podman_login_info - Get info about Podman logged in registries
|
||||
- containers.podman.podman_logout - Log out with Podman from registries
|
||||
|
||||
v1.3.2
|
||||
======
|
||||
|
||||
|
|
|
|||
|
|
@ -142,3 +142,35 @@ releases:
|
|||
- podman_container - Fix signals case for podman_container
|
||||
release_summary: bugfixes
|
||||
release_date: '2020-10-20'
|
||||
1.4.0:
|
||||
changes:
|
||||
bugfixes:
|
||||
- podman_container - Fix force restart option for containers
|
||||
- podman_logout - Handle podman logout not logging out when logged in via different tool
|
||||
- podman_network - Correct IP range example for podman_network
|
||||
- podman_image - Fix doc defaults for podman_image
|
||||
- podman_container - Remove 'detach' when creating container
|
||||
- podman_container - Fix no_hosts idempotency for newer version
|
||||
- podman_container - Fix idempotency for volume GID and UID
|
||||
minor_changes:
|
||||
- podman_container - Add log level for Podman in module
|
||||
- podman_container - Add strict image compare with hashes
|
||||
- podman_container - Move containers logic to module utils
|
||||
- podman_pod - Move pod logic to separate library
|
||||
- podman_container - Improve compatibility with docker_container by adding aliases
|
||||
- podman_image - reuse existing results in present()
|
||||
- podman_container - Add mac_address field to podman_container module
|
||||
- podman_network - Add IPv6 to network
|
||||
- podman_network - Add support of network options like MTU, VLAN
|
||||
release_summary: New modules and bugfixes, new network options
|
||||
modules:
|
||||
- description: Log out with Podman from registries
|
||||
name: podman_logout
|
||||
namespace: ''
|
||||
- description: Get info about Podman logged in registries
|
||||
name: podman_login_info
|
||||
namespace: ''
|
||||
- description: Manage multiple Podman containers at once
|
||||
name: podman_containers
|
||||
namespace: ''
|
||||
release_date: '2020-09-03'
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
namespace: containers
|
||||
name: podman
|
||||
version: 1.3.2
|
||||
version: 1.4.0
|
||||
readme: README.md
|
||||
authors:
|
||||
- Sagi Shnaidman <sshnaidm@redhat.com>
|
||||
|
|
@ -11,9 +11,11 @@ tags:
|
|||
- containers
|
||||
- podman
|
||||
- libpod
|
||||
- buildah
|
||||
- docker
|
||||
dependencies: {}
|
||||
repository: https://github.com/containers/ansible-podman-collections.git
|
||||
documentation: https://github.com/containers/ansible-podman-collections
|
||||
repository: https://github.com/containers/ansible-podman-collections
|
||||
documentation: https://docs.ansible.com/ansible/latest/collections/containers/podman/
|
||||
homepage: https://github.com/containers/ansible-podman-collections
|
||||
issues: https://github.com/containers/ansible-podman-collections/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc
|
||||
build_ignore:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue