-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.yml
87 lines (87 loc) · 2.06 KB
/
services.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
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
microservices:
azure-face-api-identifier-kube:
startup: yes
always: yes
scale: 1
env:
MYSQL_USER: xxxxxx
MYSQL_HOST: mysql
MYSQL_PASSWORD: xxxxxxxx
MYSQL_DB: XXXXXXXXX
RABBITMQ_URL: amqp://username:password@rabbitmq:5672/xxxxxxx
QUEUE_ORIGIN: azure-face-api-identifier-kube-queue
QUEUE_TO: get-response-of-face-api-kube-queue
QUEUE_TO_FOR_LOG: send-data-to-azure-iot-hub-queue
azure-face-api-registrator-kube:
startup: yes
always: yes
scale: 1
env:
RABBITMQ_URL: amqp://username:password@rabbitmq:5672/xxxxxxx
QUEUE_ORIGIN: azure-face-api-registrator-kube-queue
QUEUE_TO: register-face-to-guest-table-kube-queue
register-face-to-guest-table-kube:
startup: yes
always: yes
scale: 1
env:
MYSQL_USER: xxxxxx
MYSQL_HOST: mysql
MYSQL_PASSWORD: xxxxxxxx
RABBITMQ_URL: amqp://username:password@rabbitmq:5672/xxxxxxx
QUEUE_ORIGIN: register-face-to-guest-table-kube-queue
ui-backend-for-xxxxxxx:
scale: 1
startup: yes
always: yes
network: NodePort
ports:
- name: ui-backend
protocol: TCP
port: 30088
nodePort: 30088
env:
MYSQL_USER: xxxxxx
MYSQL_HOST: mysql
MYSQL_PASSWORD: xxxxxxxx
MYSQL_PORT: 3306
ui-frontend-for-xxxxxxx:
scale: 1
startup: yes
always: yes
network: NodePort
ports:
- name: ui-frontend
protocol: TCP
port: 3000
nodePort: 30040
ui-frontend-for-xxxxxxx-mobile:
scale: 1
startup: yes
always: yes
network: NodePort
ports:
- name: ui-front-mobile
protocol: TCP
port: 3000
nodePort: 30044
load-balancer-for-movable-devices:
scale: 1
startup: yes
always: yes
network: NodePort
ports:
- name: proxy
protocol: TCP
port: 30600
nodePort: 30600
authenticator:
startup: yes
always: yes
scale: 1
network: NodePort
ports:
- name: authenticator
protocol: TCP
port: 50500
nodePort: 30500