Repos with recipes to deploy some infrastructure services
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
-
- - 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 }}"
|