Skip to content

Commit 2681f28

Browse files
committed
Add deployment evidence, Kubernetes configs, monitoring updates and load testing artifacts
1 parent edab0f5 commit 2681f28

26 files changed

+114
-0
lines changed

docker-compose.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
services:
2+
3+
api:
4+
build: .
5+
container_name: ml_api
6+
ports:
7+
- "8000:8000"
8+
9+
prometheus:
10+
image: prom/prometheus:latest
11+
container_name: prometheus
12+
volumes:
13+
- ./monitoring/prometheus.yml:/etc/prometheus/prometheus.yml
14+
ports:
15+
- "9090:9090"
16+
depends_on:
17+
- api
18+
19+
grafana:
20+
image: grafana/grafana:latest
21+
container_name: grafana
22+
ports:
23+
- "3000:3000"
24+
depends_on:
25+
- prometheus
33.9 KB
Loading
13 KB
Loading
43 KB
Loading
172 KB
Loading
189 KB
Loading
157 KB
Loading
203 KB
Loading
193 KB
Loading
173 KB
Loading

0 commit comments

Comments
 (0)