Repos with recipes to deploy some infrastructure services
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- ---
-
- - 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 }}"
|