xoxys.sshd/molecule/centos7/destroy.yml

79 lines
2.1 KiB
YAML
Raw Normal View History

2019-11-02 19:10:39 +01:00
---
- name: Destroy
hosts: localhost
connection: local
gather_facts: false
no_log: "{{ molecule_no_log }}"
tasks:
2020-10-04 12:40:46 +02:00
- name: Check existing instance config file
stat:
path: "{{ molecule_instance_config }}"
register: cfg
2020-10-02 09:32:14 +02:00
- name: Populate the instance config
2020-10-03 17:12:29 +02:00
set_fact:
instance_conf: "{{ (lookup('file', molecule_instance_config) | from_yaml) if cfg.stat.exists else [] }}"
2019-11-02 19:10:39 +01:00
- name: Destroy molecule instance(s)
2020-10-02 09:32:14 +02:00
hcloud_server:
2019-11-02 19:10:39 +01:00
name: "{{ item.instance }}"
2020-10-02 09:32:14 +02:00
api_token: "{{ lookup('env', 'HCLOUD_TOKEN') }}"
2019-11-02 19:10:39 +01:00
state: absent
register: server
2020-10-03 17:12:29 +02:00
loop: "{{ instance_conf }}"
2019-11-02 19:10:39 +01:00
async: 7200
poll: 0
- name: Wait for instance(s) deletion to complete
async_status:
jid: "{{ item.ansible_job_id }}"
2020-10-02 09:32:14 +02:00
register: hetzner_jobs
until: hetzner_jobs.finished
2019-11-02 19:10:39 +01:00
retries: 300
2020-10-03 17:12:29 +02:00
loop: "{{ server.results }}"
2020-10-04 12:40:46 +02:00
- pause:
seconds: 5
2020-10-03 17:12:29 +02:00
- name: Destroy volume(s)
hcloud_volume:
name: "{{ item.instance }}"
server: "{{ item.instance }}"
api_token: "{{ lookup('env', 'HCLOUD_TOKEN') }}"
state: "absent"
register: volumes
loop: "{{ instance_conf }}"
when: item.volume | default(False) | bool
async: 7200
poll: 0
- name: Wait for volume(s) deletion to complete
async_status:
jid: "{{ item.ansible_job_id }}"
register: hetzner_volumes
until: hetzner_volumes.finished
retries: 300
when: volumes.changed
loop: "{{ volumes.results }}"
2019-11-02 19:10:39 +01:00
2020-10-02 09:32:14 +02:00
- name: Remove registered SSH key
hcloud_ssh_key:
name: "{{ instance_conf[0].ssh_key_name }}"
2019-11-02 19:10:39 +01:00
state: absent
2020-10-03 17:12:29 +02:00
when: (instance_conf | default([])) | length > 0
2019-11-02 19:10:39 +01:00
# Mandatory configuration for Molecule to function.
- name: Populate instance config
set_fact:
instance_conf: {}
- name: Dump instance config
copy:
content: |
# Molecule managed
{{ instance_conf | to_nice_yaml(indent=2) }}
2019-11-02 19:10:39 +01:00
dest: "{{ molecule_instance_config }}"
when: server.changed | bool