2020-03-21 11:40:49 +00:00
|
|
|
---
|
|
|
|
- name: Create
|
|
|
|
hosts: localhost
|
|
|
|
connection: local
|
|
|
|
gather_facts: false
|
|
|
|
no_log: "{{ molecule_no_log }}"
|
|
|
|
vars:
|
|
|
|
ssh_port: 22
|
2020-10-02 07:32:17 +00:00
|
|
|
ssh_user: root
|
|
|
|
ssh_path: "{{ lookup('env', 'MOLECULE_EPHEMERAL_DIRECTORY') }}/ssh_key"
|
2020-03-21 11:40:49 +00:00
|
|
|
tasks:
|
2020-10-02 07:32:17 +00:00
|
|
|
- name: Create SSH key
|
2020-03-21 11:40:49 +00:00
|
|
|
user:
|
|
|
|
name: "{{ lookup('env', 'USER') }}"
|
|
|
|
generate_ssh_key: true
|
2020-10-02 07:32:17 +00:00
|
|
|
ssh_key_file: "{{ ssh_path }}"
|
|
|
|
force: true
|
|
|
|
register: generated_ssh_key
|
2020-03-21 11:40:49 +00:00
|
|
|
|
2020-10-02 07:32:17 +00:00
|
|
|
- name: Register the SSH key name
|
|
|
|
set_fact:
|
|
|
|
ssh_key_name: "molecule-generated-{{ 12345 | random | to_uuid }}"
|
|
|
|
|
|
|
|
- name: Register SSH key for test instance(s)
|
|
|
|
hcloud_ssh_key:
|
|
|
|
name: "{{ ssh_key_name }}"
|
|
|
|
public_key: "{{ generated_ssh_key.ssh_public_key }}"
|
2020-03-21 11:40:49 +00:00
|
|
|
state: present
|
|
|
|
|
|
|
|
- name: Create molecule instance(s)
|
2020-10-02 07:32:17 +00:00
|
|
|
hcloud_server:
|
2020-03-21 11:40:49 +00:00
|
|
|
name: "{{ item.name }}"
|
2020-10-02 07:32:17 +00:00
|
|
|
server_type: "{{ item.server_type }}"
|
|
|
|
ssh_keys:
|
|
|
|
- "{{ ssh_key_name }}"
|
|
|
|
volumes: "{{ item.volumes | default(omit) }}"
|
|
|
|
image: "{{ item.image }}"
|
|
|
|
location: "{{ item.location | default(omit) }}"
|
|
|
|
datacenter: "{{ item.datacenter | default(omit) }}"
|
|
|
|
user_data: "{{ item.user_data | default(omit) }}"
|
|
|
|
api_token: "{{ lookup('env', 'HCLOUD_TOKEN') }}"
|
2020-03-21 11:40:49 +00:00
|
|
|
state: present
|
|
|
|
register: server
|
2020-10-02 07:32:17 +00:00
|
|
|
with_items: "{{ molecule_yml.platforms }}"
|
2020-03-21 11:40:49 +00:00
|
|
|
async: 7200
|
|
|
|
poll: 0
|
|
|
|
|
|
|
|
- name: Wait for instance(s) creation to complete
|
|
|
|
async_status:
|
|
|
|
jid: "{{ item.ansible_job_id }}"
|
2020-10-02 07:32:17 +00:00
|
|
|
register: hetzner_jobs
|
|
|
|
until: hetzner_jobs.finished
|
2020-03-21 11:40:49 +00:00
|
|
|
retries: 300
|
2020-10-02 07:32:17 +00:00
|
|
|
with_items: "{{ server.results }}"
|
2020-03-21 11:40:49 +00:00
|
|
|
|
|
|
|
# Mandatory configuration for Molecule to function.
|
|
|
|
|
|
|
|
- name: Populate instance config dict
|
|
|
|
set_fact:
|
|
|
|
instance_conf_dict: {
|
2020-10-02 07:32:17 +00:00
|
|
|
'instance': "{{ item.hcloud_server.name }}",
|
|
|
|
'ssh_key_name': "{{ ssh_key_name }}",
|
|
|
|
'address': "{{ item.hcloud_server.ipv4_address }}",
|
2020-03-21 11:40:49 +00:00
|
|
|
'user': "{{ ssh_user }}",
|
|
|
|
'port': "{{ ssh_port }}",
|
2020-10-02 07:32:17 +00:00
|
|
|
'identity_file': "{{ ssh_path }}", }
|
|
|
|
with_items: "{{ hetzner_jobs.results }}"
|
2020-03-21 11:40:49 +00:00
|
|
|
register: instance_config_dict
|
|
|
|
when: server.changed | bool
|
|
|
|
|
|
|
|
- name: Convert instance config dict to a list
|
|
|
|
set_fact:
|
|
|
|
instance_conf: "{{ instance_config_dict.results | map(attribute='ansible_facts.instance_conf_dict') | list }}"
|
|
|
|
when: server.changed | bool
|
|
|
|
|
|
|
|
- name: Dump instance config
|
|
|
|
copy:
|
|
|
|
content: "{{ instance_conf | to_json | from_json | molecule_to_yaml | molecule_header }}"
|
|
|
|
dest: "{{ molecule_instance_config }}"
|
|
|
|
when: server.changed | bool
|
|
|
|
|
|
|
|
- name: Wait for SSH
|
|
|
|
wait_for:
|
|
|
|
port: "{{ ssh_port }}"
|
|
|
|
host: "{{ item.address }}"
|
|
|
|
search_regex: SSH
|
|
|
|
delay: 10
|
2020-10-02 07:32:17 +00:00
|
|
|
with_items: "{{ lookup('file', molecule_instance_config) | molecule_from_yaml }}"
|
|
|
|
|
|
|
|
- name: Wait for VM to settle down
|
|
|
|
pause:
|
|
|
|
seconds: 30
|