Add: Dockerfile et configuration lionsctl pour déploiement production

- Ajout du Dockerfile avec configuration port 8086
- Configuration des variables d'environnement Keycloak et backend
- Ajout de .lionsctl.yaml avec domaine unionflow.lions.dev
- Health checks configurés pour le bon port (8086)
- Replicas: 1 comme demandé

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
dahoud
2025-12-12 22:58:50 +00:00
parent 50a9b089a4
commit 3ffcb2f38a
2 changed files with 83 additions and 0 deletions

24
.lionsctl.yaml Normal file
View File

@@ -0,0 +1,24 @@
# Configuration lionsctl pour unionflow-client
deployment:
replicas: 1
domain: unionflow.lions.dev
port: 8086
environment: production
resources:
limits:
cpu: "1"
memory: "1Gi"
requests:
cpu: "200m"
memory: "512Mi"
health:
liveness:
initialDelaySeconds: 120
periodSeconds: 10
port: 8086
readiness:
initialDelaySeconds: 60
periodSeconds: 5
port: 8086