add option to attach volumes
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2020-10-03 17:12:25 +02:00
parent 46a2e6b5c7
commit ffcf2d7497
Signed by: xoxys
GPG Key ID: 65362AE74AF98B61
2 changed files with 64 additions and 28 deletions

View File

@ -33,7 +33,6 @@
server_type: "{{ item.server_type }}" server_type: "{{ item.server_type }}"
ssh_keys: ssh_keys:
- "{{ ssh_key_name }}" - "{{ ssh_key_name }}"
volumes: "{{ item.volumes | default(omit) }}"
image: "{{ item.image }}" image: "{{ item.image }}"
location: "{{ item.location | default(omit) }}" location: "{{ item.location | default(omit) }}"
datacenter: "{{ item.datacenter | default(omit) }}" datacenter: "{{ item.datacenter | default(omit) }}"
@ -41,7 +40,7 @@
api_token: "{{ lookup('env', 'HCLOUD_TOKEN') }}" api_token: "{{ lookup('env', 'HCLOUD_TOKEN') }}"
state: present state: present
register: server register: server
with_items: "{{ molecule_yml.platforms }}" loop: "{{ molecule_yml.platforms }}"
async: 7200 async: 7200
poll: 0 poll: 0
@ -51,20 +50,46 @@
register: hetzner_jobs register: hetzner_jobs
until: hetzner_jobs.finished until: hetzner_jobs.finished
retries: 300 retries: 300
with_items: "{{ server.results }}" loop: "{{ server.results }}"
- name: Create volume(s)
hcloud_volume:
name: "{{ item.name }}"
server: "{{ item.name }}"
location: "{{ item.location | default(omit) }}"
size: "{{ item.volume_size | default(10) }}"
api_token: "{{ lookup('env', 'HCLOUD_TOKEN') }}"
state: "present"
loop: "{{ molecule_yml.platforms }}"
when: item.volume | default(False) | bool
register: volumes
async: 7200
poll: 0
- name: Wait for volume(s) creation to complete
async_status:
jid: "{{ item.ansible_job_id }}"
register: hetzner_volumes
until: hetzner_volumes.finished
retries: 300
when: volumes.changed
loop: "{{ volumes.results }}"
# Mandatory configuration for Molecule to function. # Mandatory configuration for Molecule to function.
- name: Populate instance config dict - name: Populate instance config dict
set_fact: set_fact:
instance_conf_dict: { instance_conf_dict:
'instance': "{{ item.hcloud_server.name }}", {
'ssh_key_name': "{{ ssh_key_name }}", "instance": "{{ item.hcloud_server.name }}",
'address': "{{ item.hcloud_server.ipv4_address }}", "ssh_key_name": "{{ ssh_key_name }}",
'user': "{{ ssh_user }}", "address": "{{ item.hcloud_server.ipv4_address }}",
'port': "{{ ssh_port }}", "user": "{{ ssh_user }}",
'identity_file': "{{ ssh_path }}", } "port": "{{ ssh_port }}",
with_items: "{{ hetzner_jobs.results }}" "identity_file": "{{ ssh_path }}",
"volume": "{{ item.item.item.volume | default(False) | bool }}",
}
loop: "{{ hetzner_jobs.results }}"
register: instance_config_dict register: instance_config_dict
when: server.changed | bool when: server.changed | bool
@ -85,7 +110,7 @@
host: "{{ item.address }}" host: "{{ item.address }}"
search_regex: SSH search_regex: SSH
delay: 10 delay: 10
with_items: "{{ lookup('file', molecule_instance_config) | molecule_from_yaml }}" loop: "{{ lookup('file', molecule_instance_config) | molecule_from_yaml }}"
- name: Wait for VM to settle down - name: Wait for VM to settle down
pause: pause:

View File

@ -6,16 +6,9 @@
no_log: "{{ molecule_no_log }}" no_log: "{{ molecule_no_log }}"
tasks: tasks:
- name: Populate the instance config - name: Populate the instance config
block: set_fact:
- name: Populate instance config from file instance_conf_file: "{{ lookup('file', molecule_instance_config, errors='ignore') | from_yaml }}"
set_fact: instance_conf: "{{ instance_conf_file | default([]) }}"
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) - name: Destroy molecule instance(s)
hcloud_server: hcloud_server:
@ -23,8 +16,7 @@
api_token: "{{ lookup('env', 'HCLOUD_TOKEN') }}" api_token: "{{ lookup('env', 'HCLOUD_TOKEN') }}"
state: absent state: absent
register: server register: server
with_items: "{{ instance_conf }}" loop: "{{ instance_conf }}"
when: not skip_instances
async: 7200 async: 7200
poll: 0 poll: 0
@ -34,15 +26,34 @@
register: hetzner_jobs register: hetzner_jobs
until: hetzner_jobs.finished until: hetzner_jobs.finished
retries: 300 retries: 300
with_items: "{{ server.results }}" loop: "{{ server.results }}"
- 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 }}"
- name: Remove registered SSH key - name: Remove registered SSH key
hcloud_ssh_key: hcloud_ssh_key:
name: "{{ instance_conf[0].ssh_key_name }}" name: "{{ instance_conf[0].ssh_key_name }}"
state: absent state: absent
when: when: (instance_conf | default([])) | length > 0
- not skip_instances
- (instance_conf | default([])) | length > 0 # must contain at least one instance
# Mandatory configuration for Molecule to function. # Mandatory configuration for Molecule to function.