ansible-nas/roles/minio/molecule/default/verify_stopped.yml
David Stephens bf4d7f9cb4 Add Minio
2023-07-15 19:05:37 +01:00

18 lines
423 B
YAML

---
- name: Verify
hosts: all
gather_facts: false
tasks:
- ansible.builtin.include_vars:
file: ../../defaults/main.yml
- name: Try and stop and remove minio
community.docker.docker_container:
name: "{{ minio_container_name }}"
state: absent
register: result
- name: Check if minio is stopped
ansible.builtin.assert:
that:
- not result.changed