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.
|
- ---
-
- - name: Destroy the Molecule Test Resources
- hosts: localhost
- connection: local
- gather_facts: False
- vars_files:
- - vars/molecule.yml
- tasks:
- - name: Destroy the target Platforms instance(s)
- docker_container:
- name: "{{ item.name }}"
- state: absent
- force_kill: "{{ item.force_kill | default(True) }}"
- with_items: "{{ molecule_yml.platforms }}"
|