-
Notifications
You must be signed in to change notification settings - Fork 2
/
tye.yaml
162 lines (148 loc) · 3.28 KB
/
tye.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
# tye application configuration file
# read all about it at https://github.com/dotnet/tye
#
# when you've given us a try, we'd love to know what you think:
# https://aka.ms/AA7q20u
#
name: saas
services:
- name: ingress-public
dockerFile: ./src/ingress/public/Dockerfile
dockerFileContext: ./src/ingress/public
bindings:
- name: HTTP_PORT
port: 8000
- name: frontend-marketing
dockerFile: ./src/frontends/marketing/Dockerfile
dockerFileContext: ./src/frontends/marketing
bindings:
- name: HTTP_PORT
port: 8010
- name: frontend-registration
project: src/frontends/registration/Registration/Registration.csproj
env:
- name: HTTP_PORT
value: "8020"
bindings:
- name: HTTP_PORT
port: 8020
- name: frontend-shopping
project: src/frontends/shopping/Shopping/Shopping.csproj
env:
- name: HTTP_PORT
value: "8030"
bindings:
- name: HTTP_PORT
port: 8030
- name: frontend-management
project: src/frontends/management/Management/Management.csproj
env:
- name: HTTP_PORT
value: "8040"
bindings:
- name: HTTP_PORT
port: 8040
- name: frontend-admin
project: src/frontends/admin/Admin/Admin.csproj
env:
- name: HTTP_PORT
value: "8050"
bindings:
- name: HTTP_PORT
port: 8050
- name: backend-registration
project: src/backends/registration/Registration/Registration.csproj
env:
- name: HTTP_PORT
value: "6020"
- name: GRPC_PORT
value: "6021"
bindings:
- name: HTTP_PORT
port: 6020
- name: GRPC_PORT
port: 6021
- name: backend-shopping
project: src/backends/shopping/Shopping/Shopping.csproj
env:
- name: HTTP_PORT
value: "6030"
- name: GRPC_PORT
value: "6031"
bindings:
- name: HTTP_PORT
port: 6030
- name: GRPC_PORT
port: 6031
- name: service-catalog
project: src/services/catalog/Catalog/Catalog.csproj
env:
- name: HTTP_PORT
value: "5010"
- name: GRPC_PORT
value: "5011"
bindings:
- name: HTTP_PORT
port: 5010
- name: GRPC_PORT
port: 5011
- name: service-carts
project: src/services/carts/Carts/Carts.csproj
env:
- name: HTTP_PORT
value: "5020"
- name: GRPC_PORT
value: "5021"
bindings:
- name: HTTP_PORT
port: 5020
- name: GRPC_PORT
port: 5021
- name: service-media
project: src/services/media/Media/Media.csproj
env:
- name: HTTP_PORT
value: "5030"
- name: GRPC_PORT
value: "5031"
bindings:
- name: HTTP_PORT
port: 5030
- name: GRPC_PORT
port: 5031
- name: service-search
project: src/services/search/Search/Search.csproj
env:
- name: HTTP_PORT
value: "5040"
- name: GRPC_PORT
value: "5041"
bindings:
- name: HTTP_PORT
port: 5040
- name: GRPC_PORT
port: 5041
- name: service-stores
project: src/services/stores/Stores/Stores.csproj
env:
- name: HTTP_PORT
value: "5050"
- name: GRPC_PORT
value: "5051"
bindings:
- name: HTTP_PORT
port: 5050
- name: GRPC_PORT
port: 5051
- name: service-accounts
project: src/services/accounts/Accounts/Accounts.csproj
env:
- name: HTTP_PORT
value: "5060"
- name: GRPC_PORT
value: "5061"
bindings:
- name: HTTP_PORT
port: 5060
- name: GRPC_PORT
port: 5061