-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathtye-k8s.yaml
67 lines (60 loc) · 1.73 KB
/
tye-k8s.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
# 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: modern-architecture-shop
registry: kimcu
extensions:
- name: zipkin
- name: dapr
log-level: debug
config: modernarchitectureshop-dapr-config
- name: seq
services:
- name: identityserver
project: src/Identity/Identity.csproj
buildProperties:
- name: Configuration
value: Release
env:
- name: ASPNETCORE__ENVIRONMENT
value: "Production"
- name: basketapi
project: src/Basket/ModernArchitectureShop.BasketApi/ModernArchitectureShop.BasketApi.csproj
replicas: 1
buildProperties:
- name: Configuration
value: Release
env:
- name: ASPNETCORE__ENVIRONMENT
value: "Production"
- name: storeapi
project: src/Store/ModernArchitectureShop.StoreApi/ModernArchitectureShop.InventoryApi.csproj
replicas: 1
buildProperties:
- name: Configuration
value: Release
env:
- name: ASPNETCORE__ENVIRONMENT
value: "Production"
- name: blazorui
project: src/UI/ModernArchitectureShop.BlazorUI.csproj
project: src/Identity/IdentityServerAspNetIdentity.csproj
buildProperties:
- name: Configuration
value: Release
env:
- name: ASPNETCORE__ENVIRONMENT
value: "Production"
- name: sqlserver
image: mcr.microsoft.com/mssql/server:2019-latest
env:
- name: SA_PASSWORD
value: "P@ssw0rd"
- name: ACCEPT_EULA
value: "Y"
bindings:
- port: 1433
connectionString: Data Source=${host},${port};User Id=sa;Password=${env:SA_PASSWORD};MultipleActiveResultSets=True