Funk-lab/k8s/apps/finlab/deployment.yaml
ALI YESILKAYA 56cb32eacc
feat(finlab): dashboard web (graphiques/portefeuille/actions) + fix seed NFS (#65)
Ajoute une interface graphique à finlab, en plus de la console Claude Code (les
deux cohabitent sur finance.lab.local) :

- dashboard/ : backend FastAPI (sans LLM/clé) exposant les données finlab en JSON
  (/api/portfolio, /api/scan, /api/ohlc, /api/plan, /api/alerts) + front statique
  (lightweight-charts) : graphiques chandeliers MM50/200 + volume, portefeuille
  (P&L/poids/secteurs), watchlists thématiques scannées, alertes, plan de trade R:R
- Découplage code/data : finlab lit ses configs depuis FINLAB_HOME si défini
  (workspace persistant) ; repli sur le dossier du package en dév local
- Image double usage (un build, deux conteneurs) : code → /opt/app, seed minimal
  (configs + persona + MCP) → workspace
- Fix seed NFS (cause racine du workspace vide) : WORKDIR n'est plus sur le volume
  (le runtime le créait en root sur NFS) ; seed déplacé dans un initContainer
  robuste (recrée le dossier s'il est non-inscriptible)
- Deployment : initContainer seed + 2 conteneurs (console ttyd -b /console, dashboard
  uvicorn) ; Service 2 ports ; IngressRoute 2 routes (/console + dashboard), basicAuth

Validé en local (podman) : seed OK, dashboard /api/portfolio → 16k€/10 positions
via FINLAB_HOME, endpoints ohlc/scan/plan/alerts OK, ttyd/claude/finlab présents.

Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-30 00:57:23 +02:00

101 lines
3.3 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: finlab
namespace: ai
spec:
replicas: 1
# HOME + workspace sur un volume RWO (NFS) → pas de rolling à 2 pods sur le même volume.
strategy:
type: Recreate
selector:
matchLabels:
app: finlab
template:
metadata:
labels:
app: finlab
spec:
imagePullSecrets:
- name: ghcr-pull
# PodSecurity « restricted » (ns ai). fsGroup 1000 → PVC NFS monté en /home/finlab.
securityContext:
runAsNonRoot: true
runAsUser: 1000
runAsGroup: 1000
fsGroup: 1000
seccompProfile:
type: RuntimeDefault
# initContainer : prépare le workspace (seed robuste NFS) AVANT console + dashboard,
# pour qu'il soit peuplé et inscriptible quand les deux conteneurs démarrent.
initContainers:
- name: seed
image: ghcr.io/alkatrazz24/funk-finlab:sha-54f6f7c
command: ["/usr/local/bin/entrypoint-seed.sh"]
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop: ["ALL"]
volumeMounts:
- name: home
mountPath: /home/finlab
containers:
# ── CONSOLE : Claude Code dans un terminal web (ttyd), sous /console ──
- name: console
image: ghcr.io/alkatrazz24/funk-finlab:sha-54f6f7c
command: ["/usr/local/bin/entrypoint-console.sh"]
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop: ["ALL"]
ports:
- name: console
containerPort: 7681
readinessProbe:
tcpSocket: { port: 7681 }
initialDelaySeconds: 10
periodSeconds: 15
livenessProbe:
tcpSocket: { port: 7681 }
initialDelaySeconds: 30
periodSeconds: 30
resources:
requests: { cpu: 150m, memory: 512Mi }
limits: { cpu: "1", memory: 1536Mi }
volumeMounts:
- name: home
mountPath: /home/finlab
# ── DASHBOARD : interface web (FastAPI), graphiques + données finlab ──
- name: dashboard
image: ghcr.io/alkatrazz24/funk-finlab:sha-54f6f7c
command:
- /opt/venv/bin/uvicorn
- dashboard.server:app
- --host=0.0.0.0
- --port=8800
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop: ["ALL"]
ports:
- name: web
containerPort: 8800
# FINLAB_HOME/PYTHONPATH viennent de l'image ; FINLAB_HOME = workspace (configs live).
readinessProbe:
httpGet: { path: /healthz, port: 8800 }
initialDelaySeconds: 8
periodSeconds: 15
livenessProbe:
httpGet: { path: /healthz, port: 8800 }
initialDelaySeconds: 20
periodSeconds: 30
resources:
requests: { cpu: 100m, memory: 256Mi }
limits: { cpu: 500m, memory: 768Mi }
volumeMounts:
- name: home
mountPath: /home/finlab
volumes:
- name: home
persistentVolumeClaim:
claimName: finlab-data