pvc-ansible/roles/pvc/tasks/main.yml

33 lines
532 B
YAML
Raw Normal View History

2023-09-01 15:42:19 -04:00
---
- name: add module blacklist
template:
src: system/blacklist.j2
dest: /etc/modprobe.d/blacklist.conf
2023-09-01 15:42:19 -04:00
- include: ceph.yml
2023-09-01 15:42:19 -04:00
tags: pvc-ceph
2023-09-01 15:42:19 -04:00
- include: zookeeper.yml
2023-09-01 15:42:19 -04:00
tags: pvc-zookeeper
2023-09-01 15:42:19 -04:00
- meta: flush_handlers
2023-09-01 15:42:19 -04:00
- include: libvirt.yml
2023-09-01 15:42:19 -04:00
tags: pvc-libvirt
2023-09-01 15:42:19 -04:00
- include: frr.yml
2023-09-01 15:42:19 -04:00
tags: pvc-frr
2023-09-01 15:42:19 -04:00
- include: patroni.yml
2023-09-01 15:42:19 -04:00
tags: pvc-patroni
2023-09-01 15:42:19 -04:00
- meta: flush_handlers
2023-09-01 15:42:19 -04:00
- include: pvc.yml
2023-09-01 15:42:19 -04:00
tags: pvc-pvc
run_once: true
delegate_to: "{{ play_host }}"
2023-09-01 15:42:19 -04:00
with_items: "{{ play_hosts }}"
loop_control:
loop_var: play_host