-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.yml
132 lines (132 loc) · 2.35 KB
/
app.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
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
---
apiVersion: v1
kind: Service
metadata:
name: rest-backend
spec:
selector:
app: rest-backend
ports:
- port: 7001
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: rest-backend
spec:
replicas: 3
selector:
matchLabels:
app: rest-backend
template:
metadata:
annotations:
linkerd.io/inject: enabled
labels:
app: rest-backend
spec:
containers:
- name: rest-backend
image: buoyantio/bb:v0.0.5
args:
- terminus
- "--h1-server-port=7001"
- "--response-text=rest-backend"
ports:
- containerPort: 7001
---
apiVersion: v1
kind: Service
metadata:
name: grpc-backend
spec:
selector:
app: grpc-backend
ports:
- port: 7002
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: grpc-backend
spec:
replicas: 3
selector:
matchLabels:
app: grpc-backend
template:
metadata:
annotations:
linkerd.io/inject: enabled
labels:
app: grpc-backend
spec:
containers:
- name: grpc-backend
image: buoyantio/bb:v0.0.5
args:
- terminus
- "--grpc-server-port=7002"
- "--response-text=grpc-backend"
ports:
- containerPort: 7002
---
apiVersion: v1
kind: Service
metadata:
name: gateway
spec:
selector:
app: gateway
ports:
- port: 7000
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: gateway
spec:
replicas: 1
selector:
matchLabels:
app: gateway
template:
metadata:
labels:
app: gateway
spec:
containers:
- name: gateway
image: buoyantio/bb:v0.0.5
args:
- broadcast-channel
- "--h1-server-port=7000"
- "--h1-downstream-server=http://rest-backend:7001"
- "--grpc-downstream-server=grpc-backend:7002"
ports:
- containerPort: 7000
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: traffic
spec:
replicas: 1
selector:
matchLabels:
app: traffic
template:
metadata:
labels:
app: traffic
spec:
containers:
- name: slow-cooker
image: buoyantio/slow_cooker:1.2.0
command:
- "/bin/sh"
args:
- "-c"
- |
sleep 15 # wait for pods to start
slow_cooker -qps=4 -concurrency=15 -interval=5s http://gateway:7000