ansible-roles/postgresql/defaults/main.yml
Eric Morino 9d5a272472
All checks were successful
continuous-integration/drone/push Build is passing
Add set and reconfigure locales for postgresql
2019-11-14 15:56:41 +01:00

16 lines
377 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