infrastructure/ansible/playbook.yaml
Tobias Manske b2ef2f7e27
All checks were successful
continuous-integration/drone/push Build is passing
Add infra and backup to run list
2023-12-25 18:36:54 +01:00

29 lines
747 B
YAML

---
- name: Wait for hosts to be ready
hosts: all
gather_facts: false
tasks:
- name: Wait for system to become reachable
wait_for_connection:
timeout: 300
sleep: 10
- name: gather facts
ansible.builtin.setup:
gather_subset: all
- name: Common
ansible.builtin.import_playbook: plays/common.yaml
- name: host.nc.chaoswg.org
ansible.builtin.import_playbook: plays/vps.yaml
- name: mon1.hel1.chaoswg.org
ansible.builtin.import_playbook: plays/monitoring.yaml
- name: thonkpad.ka.chaoswg.org
ansible.builtin.import_playbook: plays/thonkpad.yaml
- name: infra.unruhig.eu
ansible.builtin.import_playbook: plays/infra.yaml
- name: backup.unruhig.eu
ansible.builtin.import_playbook: plays/backup.yaml
...