feat: initial commit — Ansible roles storage-01/gpu-01 opérationnels

This commit is contained in:
alkatrazz 2026-05-12 17:17:03 +02:00
commit b3fce8af5d
70 changed files with 2688 additions and 0 deletions

View file

@ -0,0 +1,24 @@
---
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