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.
This commit is contained in:
Viktor Barzin 2026-02-08 13:16:38 +00:00
parent 8509a0326f
commit 7084c46f89
No known key found for this signature in database
GPG key ID: 0EB088298288D958
5 changed files with 244 additions and 0 deletions

21
k8s/routing-pvcs.yaml Normal file
View file

@ -0,0 +1,21 @@
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