Repos with recipes to deploy some infrastructure services
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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