mirror of
https://github.com/Alkatrazz24/Funk-lab.git
synced 2026-07-08 09:04:42 +02:00
Open WebUI (openwebui.lab.local) : - Connecté à LiteLLM (192.168.10.1:4000/v1) comme backend OpenAI-compatible - PostgreSQL via storage-01 pour l'historique des conversations - PVC 5Gi NFS pour les uploads, Traefik IngressRoute n8n (n8n.lab.local) : - PostgreSQL via storage-01, chiffrement des credentials - PVC 2Gi NFS, Traefik IngressRoute - Webhook URL interne : http://n8n.lab.local Ansible : ajoute openwebui et n8n dans postgresql_databases/users (vault_pg_openwebui_password + vault_pg_n8n_password à ajouter au vault) Prérequis avant 1er déploiement : make vault-edit # ajouter les 2 passwords make apply-storage --tags postgresql kubectl create secret generic open-webui-secret -n ai ... kubectl create secret generic n8n-secret -n ai ... Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
24 lines
527 B
YAML
24 lines
527 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: open-webui
|
|
namespace: argocd
|
|
finalizers:
|
|
- resources-finalizer.argocd.argoproj.io
|
|
spec:
|
|
project: default
|
|
source:
|
|
repoURL: git@github.com:Alkatrazz24/Funk-lab.git
|
|
targetRevision: main
|
|
path: k8s/apps/open-webui
|
|
directory:
|
|
recurse: true
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: ai
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|