fix(k8s/open-webui): memory 1Gi→2Gi (OOMKill HuggingFace download au boot)

fix(ansible/postgresql): GRANT ALL ON SCHEMA public (PostgreSQL 15+ default)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
alkatrazz 2026-05-29 15:42:54 +02:00
parent bdd36d7188
commit f9609e48dd
2 changed files with 16 additions and 2 deletions

View file

@ -139,5 +139,19 @@
loop: "{{ postgresql_users }}"
no_log: true
# PostgreSQL 15+ révoque CREATE ON SCHEMA public par défaut
- name: Grant schema public to users (PostgreSQL 15+)
community.postgresql.postgresql_privs:
database: "{{ item.db }}"
privs: ALL
type: schema
objs: public
role: "{{ item.name }}"
state: present
become: true
become_user: postgres
loop: "{{ postgresql_users }}"
no_log: true
# Firewall géré centralement par le rôle gateway (nftables)
# Port 5432 ouvert pour cluster_network dans nftables.conf.j2