Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ collections:
- name: community.docker
version: ">=3.10.2"
- name: containers.podman
version: ">=1.8.1" # keep in synch with src/molecule_plugins/podman/driver.py and src/molecule_plugins/containers/driver.py
- name: azure.azcollection
version: ">=1,<2"
- name: community.crypto
Expand Down
1 change: 1 addition & 0 deletions src/molecule_plugins/containers/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ def __init__(self, config=None) -> None:
@property
def required_collections(self) -> dict[str, str]:
"""Return collections dict containing names and versions required."""
# keep in sync with src/molecule_plugins/docker/driver.py, src/molecule_plugins/podman/driver.py and requirements.yml
return {
"ansible.posix": "1.3.0",
"community.docker": "1.9.1",
Expand Down
3 changes: 2 additions & 1 deletion src/molecule_plugins/podman/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,8 @@ def sanity_checks(self):
@property
def required_collections(self) -> dict[str, str]:
"""Return collections dict containing names and versions required."""
return {"containers.podman": "1.7.0", "ansible.posix": "1.3.0"}
# keep in sync with src/molecule_plugins/container/driver.py and requirements.yml
return {"containers.podman": "1.8.1", "ansible.posix": "1.3.0"}

def reset(self):
# keep `--filter` in sync with playbooks/create.yml
Expand Down
Loading