https://github.com/itayankri/osrm-operator
A kubernetes operator for provisioning and maintenance of OSRM clusters
https://github.com/itayankri/osrm-operator
golang kubernetes kubernetes-operator operator routing-engine
Last synced: 3 months ago
JSON representation
A kubernetes operator for provisioning and maintenance of OSRM clusters
- Host: GitHub
- URL: https://github.com/itayankri/osrm-operator
- Owner: itayankri
- License: mit
- Created: 2022-02-06T17:02:38.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-12-17T09:35:58.000Z (7 months ago)
- Last Synced: 2025-12-17T14:55:18.105Z (7 months ago)
- Topics: golang, kubernetes, kubernetes-operator, operator, routing-engine
- Language: Go
- Homepage:
- Size: 80.1 MB
- Stars: 6
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OSRMCluster Operator
A kubernetes operator to deploy and manage [OSRM](https://project-osrm.org/) routing engine clusters. This operator efficiently deploys OSRM instances by sharing map data accross all pods of a specific instance.
## Quickstart
First, make sure you have a running Kubernetes cluster and kubectl installed to access it. Then run the following command to install the operator:
```
kubectl apply -f https://github.com/itayankri/OSRM-Operator/releases/latest/download/osrm-cluster-operator.yaml
```
Then you can deploy an OSRMCluster:
```
kubectl apply -f https://github.com/itayankri/OSRM-Operator/blob/master/examples/multi_profile_osrm_cluster.yaml
```
## Pausing the Operator
The reconciliation can be paused by adding the following annotation to the OSRMCluster resource:
```bash
osrm.itayankri/operator.paused: "true"
```
The operator will not react to any changes to the OSRMCluster resource or any of the watched resources. If a paused OSRMCluster resource is deleted, the dependent resources will still be cleaned up because thay all have an ownerReference.