mirror of
https://github.com/Alkatrazz24/Funk-lab.git
synced 2026-07-13 10:04:42 +02:00
feat(openalice): déploiement in-cluster de l'agent IA financier (back-end finance d'Asa)
Déploie TraderAlice/OpenAlice (AGPL-3.0) dans le namespace ai comme back-end de connaissances financières pour Asa, consommé via le connecteur MCP Ask. - CI build-openalice.yml : rebuild depuis le Dockerfile amont (ref épinglée v0.60.0-beta.1) → ghcr.io/alkatrazz24/funk-openalice, bump manifest sur main - k8s/apps/openalice : Deployment (restricted + fsGroup, Recreate), PVC 5Gi NFS /data, Service web:47331 + mcpask:3003, IngressRoute openalice.lab.local - ArgoCD app + doc admin/ia/openalice.md (RAG) + MAJ CLAUDE.md - Cerveau hybride : LiteLLM/Qwen3-8B local (gratuit) + Claude basculable ; données TraderHub (sans clé) + FMP gratuit. Lecture/recherche seule — aucun broker, zéro trading. Onboarding premier boot (Web UI) imposé : credentials scellés dans /data par design. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
parent
ebb2eec184
commit
08db9670da
9 changed files with 341 additions and 1 deletions
14
k8s/apps/openalice/pvc.yaml
Normal file
14
k8s/apps/openalice/pvc.yaml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: openalice-data
|
||||
namespace: ai
|
||||
spec:
|
||||
# /data : auth des CLIs agent, sessions, config (credentials SCELLÉES au repos),
|
||||
# caches, archive news, historique trading. Persiste config + onboarding premier boot.
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
storageClassName: nfs
|
||||
resources:
|
||||
requests:
|
||||
storage: 5Gi
|
||||
Loading…
Add table
Add a link
Reference in a new issue