* chore: k8s rolling update deployment * chore: change param name * docs: README for k8s rolling update * docs: fix typo * chore: add namespace, add loadbalancer * docs: update doc for k8s deployment and service * feat: crontab per 20 minutes * fix: sed on linux
16 lines
297 B
YAML
16 lines
297 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: routing-osrm-service
|
|
namespace: routing-osrm
|
|
annotations:
|
|
service.beta.kubernetes.io/aws-load-balancer-internal: 0.0.0.0/0
|
|
spec:
|
|
selector:
|
|
app: routing
|
|
ports:
|
|
- port: 5001
|
|
protocol: TCP
|
|
targetPort: 5000
|
|
type: LoadBalancer
|