Repos with recipes to deploy some infrastructure services
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

16 regels
412 B

  1. ---
  2. - name: Destroy the Molecule Test Resources
  3. hosts: localhost
  4. connection: local
  5. gather_facts: False
  6. vars_files:
  7. - vars/molecule.yml
  8. tasks:
  9. - name: Destroy the target Platforms instance(s)
  10. docker_container:
  11. name: "{{ item.name }}"
  12. state: absent
  13. force_kill: "{{ item.force_kill | default(True) }}"
  14. with_items: "{{ molecule_yml.platforms }}"