wrongmove/k8s/routing-pvcs.yaml
Viktor Barzin 7084c46f89
Add Kubernetes manifests for routing engines
Deployments and Services for osrm-foot (256-512MB), osrm-bicycle
(256-512MB), and OTP (1-2GB). Includes PVCs for data storage and an
init Job to download and pre-process Greater London OSM data.
2026-02-08 13:16:38 +00:00

21 lines
327 B
YAML

apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: osrm-data-pvc
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 2Gi
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: otp-data-pvc
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 2Gi