teardown_container.yml 742 B

123456789101112131415161718192021222324
  1. ---
  2. # Include this to delete the current test host container.
  3. #
  4. # In order to recover from test exceptions, this cleanup is expected to
  5. # be done in an "always:" task on the same block as the test task(s). So
  6. # it happens in a task "on" the host being tested. In order to delete the
  7. # host's container, the task uses its own hostname (which is same as the
  8. # container name) but delegates the docker action to localhost.
  9. - block:
  10. # so handlers don't break the test by trying to run after teardown:
  11. - meta: flush_handlers
  12. always:
  13. - name: delete test container
  14. delegate_to: localhost
  15. connection: local
  16. docker_container:
  17. name: "{{ inventory_hostname }}"
  18. state: absent
  19. failed_when: False