-
Notifications
You must be signed in to change notification settings - Fork 11
/
k8s-chat-server-config.yaml
56 lines (53 loc) · 1.64 KB
/
k8s-chat-server-config.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
#This configuration file is used to override the use of the value.yaml variable.
#Currently, only the configuration with ingressName as nginx is provided.
#If it is another gateway such as istio or treafik, please modify the corresponding gateway requirements
image:
# registry.cn-hangzhou.aliyuncs.com/openimsdk/admin-api
repository: registry.cn-hangzhou.aliyuncs.com/openimsdk/chat-api-admin
pullPolicy: Always
tag: "release-v1.6"
ingress:
enabled: true
className: "nginx"
annotations:
nginx.ingress.kubernetes.io/use-regex: "true"
nginx.ingress.kubernetes.io/rewrite-target: /$2
hosts:
- host: openim1.server.top
paths:
- path: /complete_admin(/|$)(.*)
pathType: ImplementationSpecific
tls:
- secretName: webapitls #your hostname tls
hosts:
- openim1.server.top
chat-api:
image:
repository: registry.cn-hangzhou.aliyuncs.com/openimsdk/chat-api-chat
pullPolicy: Always
tag: "release-v1.6"
ingress:
enabled: true
className: "nginx"
annotations:
nginx.ingress.kubernetes.io/use-regex: "true"
nginx.ingress.kubernetes.io/rewrite-target: /$2
hosts:
- host: openim1.server.top
paths:
- path: /chat(/|$)(.*)
pathType: ImplementationSpecific
tls:
- secretName: webapitls #your hostname tls
hosts:
- openim1.server.top
admin-rpc:
image:
repository: registry.cn-hangzhou.aliyuncs.com/openimsdk/chat-rpc-admin
pullPolicy: Always
tag: "release-v1.6"
chat-rpc:
image:
repository: registry.cn-hangzhou.aliyuncs.com/openimsdk/chat-rpc-chat
pullPolicy: Always
tag: "release-v1.6"