devops/ansible/playbooks/patroni.yml
2025-08-20 12:05:57 +03:00

14 lines
249 B
YAML

- name: Install etcd on all nodes
hosts: etcd
roles:
- role: etcd
tags: [ etcd ]
- name: Install psql + patroni on nodes 1 and 2
hosts: psql
roles:
- role: psql
tags: [ psql ]
- role: patroni
tags: [ patroni ]