-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrender.yaml
More file actions
74 lines (69 loc) · 2.53 KB
/
render.yaml
File metadata and controls
74 lines (69 loc) · 2.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
services:
# ── Streamlit dashboard — primary web UI ───────────────────────────────────
- type: web
name: sentinel-dashboard
env: docker
dockerfilePath: ./streamlit-dashboard/Dockerfile
dockerContext: ./streamlit-dashboard
plan: free
autoDeploy: true
healthCheckPath: /_stcore/health
envVars:
- key: WAREHOUSE_MODE
value: postgres
- key: DATABASE_URL
sync: false # set in Render dashboard
- key: INGESTION_URL
value: https://sentinel-ingestion.onrender.com
- key: DRIFT_ENGINE_URL
value: https://sentinel-drift-engine.onrender.com
- key: LLM_GUARD_URL
value: https://sentinel-llm-guard.onrender.com
# ── Ingestion service (Go) ─────────────────────────────────────────────────
- type: web
name: sentinel-ingestion
env: docker
dockerfilePath: ./ingestion-service/Dockerfile
dockerContext: ./ingestion-service
plan: free
autoDeploy: true
healthCheckPath: /health
envVars:
- key: WAREHOUSE_MODE
value: postgres
- key: DATABASE_URL
sync: false # set in Render dashboard
- key: PORT
value: "8080"
# ── Drift engine (C++ + Python) ────────────────────────────────────────────
- type: web
name: sentinel-drift-engine
env: docker
dockerfilePath: ./drift-engine/Dockerfile
dockerContext: ./drift-engine
plan: free
autoDeploy: true
healthCheckPath: /health
envVars:
- key: WAREHOUSE_MODE
value: postgres
- key: DATABASE_URL
sync: false # set in Render dashboard
# ── LLM Guard ──────────────────────────────────────────────────────────────
- type: web
name: sentinel-llm-guard
env: docker
dockerfilePath: ./llm-guard/Dockerfile
dockerContext: ./llm-guard
plan: free
autoDeploy: true
healthCheckPath: /health
envVars:
- key: WAREHOUSE_MODE
value: postgres
- key: DATABASE_URL
sync: false # set in Render dashboard
- key: OLLAMA_HOST
sync: false # set in Render dashboard if using Ollama
- key: LLM_MODEL
value: llama2