infrastructure/ansible/playbook.yaml

32 lines
836 B
YAML
Raw Normal View History

---
- 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
2023-09-06 18:41:59 +02:00
- name: gather facts
ansible.builtin.setup:
gather_subset: all
2023-03-30 23:52:40 +02:00
- 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
2023-12-25 18:36:54 +01:00
- name: infra.unruhig.eu
ansible.builtin.import_playbook: plays/infra.yaml
2024-03-02 22:32:19 +01:00
- name: filehost.unruhig.eu
ansible.builtin.import_playbook: plays/filehost.yaml
- name: grp_prometheus
ansible.builtin.import_playbook: plays/grp_prometheus.yaml
...