2019-06-19 20:04:27 +00:00
|
|
|
---
|
|
|
|
- name: Destroy
|
|
|
|
hosts: localhost
|
|
|
|
connection: local
|
|
|
|
gather_facts: false
|
2019-10-18 09:03:16 +00:00
|
|
|
no_log: "{{ molecule_no_log }}"
|
2019-06-19 20:04:27 +00:00
|
|
|
tasks:
|
2020-10-02 07:32:11 +00:00
|
|
|
- name: Populate the instance config
|
|
|
|
block:
|
|
|
|
- name: Populate instance config from file
|
2019-06-19 20:04:27 +00:00
|
|
|
set_fact:
|
|
|
|
instance_conf: "{{ lookup('file', molecule_instance_config) | molecule_from_yaml }}"
|
|
|
|
skip_instances: false
|
|
|
|
rescue:
|
|
|
|
- name: Populate instance config when file missing
|
|
|
|
set_fact:
|
|
|
|
instance_conf: {}
|
|
|
|
skip_instances: true
|
|
|
|
|
|
|
|
- name: Destroy molecule instance(s)
|
2020-10-02 07:32:11 +00:00
|
|
|
hcloud_server:
|
2019-10-18 09:03:16 +00:00
|
|
|
name: "{{ item.instance }}"
|
2020-10-02 07:32:11 +00:00
|
|
|
api_token: "{{ lookup('env', 'HCLOUD_TOKEN') }}"
|
2019-06-19 20:04:27 +00:00
|
|
|
state: absent
|
|
|
|
register: server
|
2020-10-02 07:32:11 +00:00
|
|
|
with_items: "{{ instance_conf }}"
|
2019-06-19 20:04:27 +00:00
|
|
|
when: not skip_instances
|
|
|
|
async: 7200
|
|
|
|
poll: 0
|
|
|
|
|
|
|
|
- name: Wait for instance(s) deletion to complete
|
|
|
|
async_status:
|
|
|
|
jid: "{{ item.ansible_job_id }}"
|
2020-10-02 07:32:11 +00:00
|
|
|
register: hetzner_jobs
|
|
|
|
until: hetzner_jobs.finished
|
2019-06-19 20:04:27 +00:00
|
|
|
retries: 300
|
2020-10-02 07:32:11 +00:00
|
|
|
with_items: "{{ server.results }}"
|
2019-10-18 09:03:16 +00:00
|
|
|
|
2020-10-02 07:32:11 +00:00
|
|
|
- name: Remove registered SSH key
|
|
|
|
hcloud_ssh_key:
|
|
|
|
name: "{{ instance_conf[0].ssh_key_name }}"
|
2019-10-18 09:03:16 +00:00
|
|
|
state: absent
|
2020-10-02 07:32:11 +00:00
|
|
|
when:
|
|
|
|
- not skip_instances
|
|
|
|
- (instance_conf | default([])) | length > 0 # must contain at least one instance
|
2019-06-19 20:04:27 +00:00
|
|
|
|
|
|
|
# Mandatory configuration for Molecule to function.
|
|
|
|
|
|
|
|
- name: Populate instance config
|
|
|
|
set_fact:
|
|
|
|
instance_conf: {}
|
|
|
|
|
|
|
|
- name: Dump instance config
|
|
|
|
copy:
|
2019-10-18 09:03:16 +00:00
|
|
|
content: "{{ instance_conf | molecule_to_yaml | molecule_header }}"
|
2019-06-19 20:04:27 +00:00
|
|
|
dest: "{{ molecule_instance_config }}"
|
|
|
|
when: server.changed | bool
|