- 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>
25 lines
407 B
YAML
25 lines
407 B
YAML
# 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
|