Déploiement Kubernetes
Déployez Luneo sur Kubernetes pour haute disponibilité et scalabilité.
Deployment manifest
apiVersion: apps/v1
kind: Deployment
metadata: name: luneo-frontend
spec: replicas: 3 selector: matchLabels: app: luneo template: metadata: labels: app: luneo spec: containers: - name: frontend image: luneo/frontend:latest ports: - containerPort: 3000 env: - name: NEXT_PUBLIC_SUPABASE_URL valueFrom: secretKeyRef: name: luneo-secrets key: supabase-url