ansible-postgresql/tasks/extension/timescale.yaml
2022-05-26 14:08:42 +02:00

13 lines
416 B
YAML

- name: postgres | tasks | extension| timescale | install | add timescale repo
ansible.builtin.template:
src: installation/timescale.repo.j2
dest: /etc/yum.repos.d/timescale_timescaledb.repo
- name: postgres | tasks | extension| timescale | install | install timescaledb extension
dnf:
name:
- timescaledb-2-postgresql-{{postgres_version}}
state: present
notify:
- restart postgreql