mirror of
http://172.20.10.11:3000/gitadmin/INSIGHT-MVP.git
synced 2026-06-25 00:16:41 +02:00
- PostgreSQL: initdb durch rsync-Ansatz ersetzt (Ubuntu/Debian kompatibel) Data-Dir wird via rsync vom Default-Cluster nach /data/postgresql migriert - PostgreSQL: de_DE.UTF-8 Locale-Generierung als ersten Task hinzugefügt - Redis: redis-cli ping mit Passwort-Auth (no_log: true) - Playbooks: vars_files: ../vault.yml in dbs01/aps01/web01 ergänzt Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
15 lines
357 B
YAML
15 lines
357 B
YAML
---
|
|
# Playbook nur für DBS01 — schnelles Update ohne alle Server
|
|
# Ausführung: ansible-playbook -i inventory/hosts.yml playbooks/dbs01.yml
|
|
|
|
- name: "INSIGHT-DBS01 Setup"
|
|
hosts: insight_dbs
|
|
become: true
|
|
vars_files:
|
|
- ../vault.yml
|
|
roles:
|
|
- role: common
|
|
- role: disk_setup
|
|
- role: postgresql
|
|
- role: pgbouncer
|
|
- role: redis
|