13 lines
440 B
YAML
13 lines
440 B
YAML
---
|
|
# Prune unused Podman resources
|
|
|
|
- name: Prune Podman resources
|
|
containers.podman.podman_prune:
|
|
container: "{{ podman_prune_options.container }}"
|
|
image: "{{ podman_prune_options.image }}"
|
|
network: "{{ podman_prune_options.network }}"
|
|
system: "{{ podman_prune_options.system }}"
|
|
system_all: "{{ podman_prune_options.system_all }}"
|
|
volume: "{{ podman_prune_options.volume }}"
|
|
when: podman_prune_enabled | bool
|