Repos with recipes to deploy some infrastructure services
Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- ---
-
- - 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 }}"
|