Repos with recipes to deploy some infrastructure services
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

16 linhas
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 }}"