Skip to content
Merged
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
5 changes: 4 additions & 1 deletion meta/runtime.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
---
requires_ansible: ">=2.18.0"
# ansible-core floor: 2.18 went EOL on 2026-05-31, 2.19 goes EOL 2026-11-30.
# Declare 2.19 as the floor now so 2.18 users see a resolvable error message
# instead of a stray syntax failure; bump to 2.20 once 2.19 goes EOL.
requires_ansible: ">=2.19.0"
Comment on lines +2 to +5

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win

Align documentation and CI with the new Ansible floor.

The metadata now requires ansible-core >=2.19.0, but:

  • README.md, Line [106] still documents Ansible 2.18+. Update it to 2.19+.
  • .github/workflows/test_plugins.yml, Lines [64-65] still includes 2.18. Remove it from the supported or gating matrix, or mark it explicitly as non-supported best-effort coverage.

Otherwise, users can follow documentation that leads to a metadata rejection, and CI can validate a version that the collection no longer supports.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@meta/runtime.yml` around lines 2 - 5, Align the documented and tested Ansible
versions with the requires_ansible floor in runtime metadata: update the
README’s supported version text from Ansible 2.18+ to 2.19+, and adjust the
test_plugins workflow matrix to remove Ansible 2.18 or explicitly mark it as
non-supported best-effort coverage.

4 changes: 4 additions & 0 deletions molecule/shared/create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@
incus_storage_pool: "{{ lookup('env', 'INCUS_STORAGE_POOL') | default('lvm-pool', true) }}"
# Pre-baked local images with SSH + python3 + authorized_keys ready.
incus_images:
# Debian 12 (Bookworm) went EOL on 2026-07-11. Kept in the full CI
# matrix as best-effort while community users still run it; drop
# once Trixie hits its 1-year mark (2026-08) and Bookworm images
# stop building cleanly.
debian12: "molecule-debian-12"
debian13: "molecule-debian-13"
rockylinux9: "molecule-rockylinux-9"
Expand Down
Loading