-
Notifications
You must be signed in to change notification settings - Fork 0
/
gateway.yaml
55 lines (55 loc) · 882 Bytes
/
gateway.yaml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
name: my-gateway
spec:
selector:
istio: ingressgateway
servers:
- port:
number: 80
name: http
protocol: HTTP
hosts:
- "*"
---
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: testbed-vs
spec:
hosts:
- "*"
gateways:
- default/my-gateway
http:
- match:
- uri:
prefix: "/user"
route:
- destination:
host: user
- match:
- uri:
prefix: "/catalogue"
route:
- destination:
host: catalogue
- match:
- uri:
prefix: "/order"
route:
- destination:
host: order
- match:
- uri:
prefix: "/cart"
route:
- destination:
host: cart
- match:
- uri:
prefix: "/employee"
route:
- destination:
host: employee