{{tag>Brouillon ansible podman}} # Notes ansible podman ~~~bash ansible-doc -t connection -l | grep podman ansible-doc -t inventory -l | grep podman ~~~ play.yml ~~~yaml #! /usr/bin/ansible-playbook --- - name: test hosts: all connection: containers.podman.podman tasks: - name: Test command: ls -l ~~~ `inventory.yml` ~~~yaml plugin: containers.podman.podman_containers include_stopped: false #label_selectors: # role: api connection_plugin: containers.podman.podman ~~~ ~~~bash ./plop.yml -i inventory.yml ~~~ Le conteneur doit avoir python3 FIXME