mirror of
https://github.com/Alkatrazz24/Funk-lab.git
synced 2026-07-09 01:24:42 +02:00
24 lines
638 B
YAML
24 lines
638 B
YAML
---
|
|
postgresql_version: 16
|
|
postgresql_port: 5432
|
|
postgresql_data_dir: /srv/data/postgres
|
|
|
|
# Écoute sur localhost + LAN cluster (pour les services k8s futurs)
|
|
postgresql_listen_addresses: "localhost, 192.168.10.1"
|
|
|
|
postgresql_max_connections: 100
|
|
postgresql_shared_buffers: "256MB"
|
|
|
|
# Bases et utilisateurs à créer
|
|
# Mots de passe dans le vault : vault_pg_hermes_password, vault_pg_litellm_password
|
|
postgresql_databases:
|
|
- name: hermes
|
|
- name: litellm
|
|
|
|
postgresql_users:
|
|
- name: hermes
|
|
password: "{{ vault_pg_hermes_password }}"
|
|
db: hermes
|
|
- name: litellm
|
|
password: "{{ vault_pg_litellm_password }}"
|
|
db: litellm
|