-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhcdn-ingress.yaml
109 lines (109 loc) · 2.89 KB
/
hcdn-ingress.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: hcdn-ingress
namespace: hcdn
annotations:
kubernetes.io/ingress.class: "nginx"
spec:
rules:
- host: www.declive-server.com #升级平台
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: declive-admin-server
port:
number: 8888
- host: www.declive-scheduler-server.com #调度服务
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: declive-scheduler-server
port:
number: 12001
- host: www.declive-stbinfo-server.com #查询服务
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: declive-stbinfo-server
port:
number: 10180
- host: www.declive-slice-server.com #分片服务
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: declive-slice-server
port:
number: 10003
- host: www.gateway-server.com #网关服务
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: gateway-server
port:
number: 8073
- host: www.ec-config-server.com #配置服务
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: ec-config-server
port:
number: 8074
- host: www.stun-service.com #stun服务
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: stun-service
port:
number: 3478
- host: www.ec-nodecontroller-server.com #节点索引服务
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: ec-node-controller-server
port:
number: 8072
- host: www.lc-wsserver.com #长链接ws
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: lc-ws-server
port:
number: 8074
- host: www.lc-httpserver.com #长链接http
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: lc-http-server
port:
number: 8076