ansible-roles/postgresql/defaults/main.yml
Eric Morino 1bf271a4f4
All checks were successful
continuous-integration/drone/push Build is passing
Add install PostGIS in postgresql rôle
2019-12-26 16:16:05 +01:00

19 lines
424 B
YAML

---
# Used to create specific Munin graphs.
postgresql_databases: []
# Tuning
postgresql_shared_buffers: "{{ (ansible_memtotal_mb * 0.25) | int }}MB"
postgresql_work_mem: 8MB
postgresql_random_page_cost: 1.5
postgresql_effective_cache_size: "{{ (ansible_memtotal_mb * 0.5) | int }}MB"
# PostgreSQL version
postgresql_version: '9.6'
# Set locales
locales_default: fr_FR.UTF-8
# PostGIS
postgresql_install_postgis: false