You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.7 KiB
YAML
78 lines
2.7 KiB
YAML
---
|
|
# Example call:
|
|
# poetry run ansible-playbook create-db-import.yml --ask-vault-pass -e "cluster_name='maria' cluster_size='1' stage='dev' upload_file='dumps/import.sql' uploaded_file='import.sql' target_database=test01"
|
|
|
|
# How this stuff works:
|
|
# If `upload_file` is defined the upload role save the binary to `upload_directory` (default /tmp)
|
|
# If `uploaded_file` and `target_database` are defined the import role imports from file basename `uploaded_file` to `target_database`
|
|
# If both role conditions match the upload role trigger first.
|
|
|
|
|
|
#############################################################
|
|
# Creating inventory dynamically for given parameters
|
|
#############################################################
|
|
|
|
- hosts: localhost
|
|
connection: local
|
|
gather_facts: false
|
|
|
|
pre_tasks:
|
|
- name: "Check if ansible version is at least 2.10.x"
|
|
assert:
|
|
that:
|
|
- ansible_version.major >= 2
|
|
- ansible_version.minor >= 10
|
|
msg: "The ansible version has to be at least ({{ ansible_version.full }})"
|
|
|
|
tasks:
|
|
- name: Add hosts
|
|
add_host:
|
|
name: "{{ stage }}-{{ cluster_name }}-{{ '%02d' | format(item|int) }}"
|
|
groups:
|
|
- "stage_{{ stage }}"
|
|
- "upload_local_file"
|
|
- "import_maria_database"
|
|
with_sequence: start=1 end={{ cluster_size | default(1) }}
|
|
changed_when: False
|
|
|
|
|
|
#############################################################
|
|
# Setup services for created inventory
|
|
#############################################################
|
|
|
|
- hosts: "stage_{{ stage }}"
|
|
serial: "{{ serial_number | default(1) }}"
|
|
remote_user: root
|
|
|
|
pre_tasks:
|
|
- name: "Gathering current server infos from hetzner"
|
|
hcloud_server_info:
|
|
api_token: "{{ hetzner_authentication_token }}"
|
|
register: hetzner_server_infos
|
|
delegate_to: 127.0.0.1
|
|
|
|
- name: "Setting current server infos as fact: hetzner_server_infos_json"
|
|
set_fact:
|
|
hetzner_server_infos_json: "{{ hetzner_server_infos.hcloud_server_info }}"
|
|
delegate_to: 127.0.0.1
|
|
|
|
- name: "Reading ip address for {{ inventory_hostname }}"
|
|
set_fact:
|
|
stage_server_ip: "{{ hetzner_server_infos_json | json_query(querystr) | first }}"
|
|
vars:
|
|
querystr: "[?name=='{{ inventory_hostname }}'].ipv4_address"
|
|
delegate_to: 127.0.0.1
|
|
|
|
- name: "Printing ip address for {{ inventory_hostname }}"
|
|
debug:
|
|
msg: "{{ stage_server_ip }}"
|
|
delegate_to: 127.0.0.1
|
|
when:
|
|
- debug
|
|
|
|
roles:
|
|
- role: upload-local-file
|
|
when: "'upload_local_file' in group_names and upload_file is defined"
|
|
- role: import-maria-database
|
|
when: "'import_maria_database' in group_names and target_database is defined and uploaded_file is defined"
|