ansible-roles/etcd/tasks/packages.yml
Eric Morino 49cd3fb5b0
All checks were successful
Ansible Lint |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |2797|0|2797|0|:zzz:
gitea/ansible-roles/pipeline/head This commit looks good
création role etcd
2023-04-03 16:04:50 +02:00

16 lines
317 B
YAML

---
- name: Install etcd client / server package
ansible.builtin.apt:
name:
- etcd-client
- etcd-server
update_cache: yes
- name: Install python dependencies for Patroni
ansible.builtin.apt:
name:
- python3-etcd
- python3-psycopg2
when: patroni_install_dependencies | bool