Initial commit
All checks were successful
/ ansible-docsmith (push) Successful in 21s

Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
Julien Riou 2026-03-23 10:37:28 +01:00 committed by Julien Riou
commit 36f1f01120
Signed by: jriou
GPG key ID: 9A099EDA51316854
86 changed files with 3431 additions and 0 deletions

View file

@ -0,0 +1,11 @@
---
- name: Destroy container instances
hosts: localhost
gather_facts: false
tasks:
- name: Remove containers
containers.podman.podman_container:
name: "{{ item }}"
state: absent
loop: "{{ groups['molecule'] }}"
failed_when: false