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