31 lines
969 B
YAML
31 lines
969 B
YAML
---
|
|
|
|
postgres_ha_service_name: 'nim-waku-db'
|
|
postgres_ha_cont_image: 'postgres:15.1-alpine'
|
|
|
|
postgres_ha_is_master: true
|
|
postgres_ha_replica_enabled: false
|
|
postgres_ha_replica_allowed_addresses: []
|
|
|
|
postgres_ha_admin_user: 'postgres'
|
|
postgres_ha_admin_pass: '{{lookup("vault", "database", field="db-admin-password")}}'
|
|
|
|
postgres_ha_databases:
|
|
- name: 'nim-waku'
|
|
user: 'nim-waku'
|
|
pass: '{{lookup("vault", "database", field="db-password")}}'
|
|
|
|
postgres_ha_backup: false
|
|
|
|
postgres_ha_metrics_exporter_cont_port: 9187
|
|
|
|
# Open PostgreSQL Port
|
|
open_ports_default_comment: '{{ postgres_ha_service_name }}'
|
|
open_ports_list:
|
|
postgres:
|
|
- { port: '{{ postgres_ha_cont_port }}', ipset: '{{ env }}.{{ stage }}', iifname: 'wg0' }
|
|
- { port: '{{ postgres_ha_metrics_exporter_cont_port }}', ipset: 'hq.metrics', iifname: 'wg0' }
|
|
|
|
# Use the 30% of RAM for shared memory
|
|
postgres_ha_share_memory: '{{ (ansible_memtotal_mb * 0.3) | int }}m'
|