forked from ONSdigital/onse-banking-app-infrastructure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ingress.yml
34 lines (34 loc) · 864 Bytes
/
ingress.yml
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
29
30
31
32
33
34
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: banking-ingress
annotations:
kubernetes.io/ingress.class: traefik
spec:
rules:
- host: banking-rabbit.apps.onse-training.co.uk
http:
paths:
- path: /
backend:
serviceName: message-bus
servicePort: management
- host: banking-demo.apps.onse-training.co.uk
http:
paths:
- path: /cashier/
backend:
serviceName: cashier-service
servicePort: http
- path: /customers/
backend:
serviceName: customer-service
servicePort: http
- path: /accounts/
backend:
serviceName: account-service
servicePort: http
- path: /balance/
backend:
serviceName: balance-service
servicePort: http