Spaces:
Sleeping
Sleeping
File size: 571 Bytes
bcb314a |
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 |
name: exam-scorer-api
spec:
connectivity:
network_id: default
containers:
- name: api
image: cr.yandex/your-registry-id/exam-scorer:latest
command:
- python
- -m
- uvicorn
- app.main:api
- --host
- 0.0.0.0
- --port
- "8000"
ports:
- containerPort: 8000
protocol: TCP
resources:
memory: "2048MB"
cores: "1"
probes:
http:
path: /health
port: 8000
initialDelaySeconds: 10
periodSeconds: 5 |