-
Notifications
You must be signed in to change notification settings - Fork 3
/
booksapp-trafficsplit.yml
355 lines (355 loc) · 6.71 KB
/
booksapp-trafficsplit.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
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
---
apiVersion: v1
kind: Service
metadata:
name: mysql
labels:
app: mysql
project: booksapp
spec:
ports:
- port: 3306
selector:
app: mysql
clusterIP: None
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: mysql
labels:
app: mysql
project: booksapp
spec:
selector:
matchLabels:
app: mysql
project: booksapp
strategy:
type: Recreate
template:
metadata:
annotations:
linkerd.io/inject: enabled
labels:
app: mysql
project: booksapp
spec:
containers:
- name: mysql
image: mysql:5.6
env:
- name: MYSQL_ROOT_PASSWORD
value: password
- name: MYSQL_DATABASE
value: booksapp_production
- name: MYSQL_USER
value: booksapp
- name: MYSQL_PASSWORD
value: booksapp
- name: MYSQL_INITDB_SKIP_TZINFO
value: "1"
ports:
- containerPort: 3306
name: mysql
---
apiVersion: batch/v1
kind: Job
metadata:
name: mysql-init
labels:
app: mysql-init
project: booksapp
spec:
template:
metadata:
name: mysql-init
annotations:
linkerd.io/inject: enabled
labels:
app: mysql-init
project: booksapp
spec:
containers:
- name: mysql-init
image: buoyantio/booksapp:v0.0.3
env:
- name: DATABASE_URL
value: mysql2://booksapp:booksapp@mysql:3306/booksapp_production
command:
- "/bin/sh"
args:
- "-c"
- |
set -e
bundle exec rake db:ready
bundle exec rake db:migrate
bundle exec rake db:seed
restartPolicy: OnFailure
---
apiVersion: v1
kind: Service
metadata:
name: webapp
labels:
app: webapp
project: booksapp
spec:
selector:
app: webapp
type: LoadBalancer
ports:
- name: service
port: 7000
---
kind: Deployment
apiVersion: apps/v1
metadata:
name: webapp
labels:
app: webapp
project: booksapp
spec:
replicas: 3
selector:
matchLabels:
app: webapp
project: booksapp
template:
metadata:
annotations:
linkerd.io/inject: enabled
labels:
app: webapp
project: booksapp
spec:
dnsPolicy: ClusterFirst
containers:
- name: service
image: buoyantio/booksapp:v0.0.3
env:
- name: DATABASE_URL
value: mysql2://booksapp:booksapp@mysql:3306/booksapp_production
- name: AUTHORS_SITE
value: http://authors:7001
- name: BOOKS_SITE
value: http://books:7002
args: ["prod:webapp"]
readinessProbe:
httpGet:
path: /ping
port: 7000
ports:
- name: service
containerPort: 7000
---
apiVersion: v1
kind: Service
metadata:
name: authors
labels:
app: authors
project: booksapp
spec:
selector:
app: authors
ports:
- name: service
port: 7001
---
kind: Deployment
apiVersion: apps/v1
metadata:
name: authors
labels:
app: authors
project: booksapp
spec:
selector:
matchLabels:
app: authors
project: booksapp
replicas: 3
template:
metadata:
annotations:
linkerd.io/inject: enabled
labels:
app: authors
project: booksapp
spec:
dnsPolicy: ClusterFirst
containers:
- name: service
image: buoyantio/booksapp:v0.0.3
env:
- name: DATABASE_URL
value: mysql2://booksapp:booksapp@mysql:3306/booksapp_production
- name: BOOKS_SITE
value: http://books:7002
args: ["prod:authors"]
readinessProbe:
httpGet:
path: /ping
port: 7001
ports:
- name: service
containerPort: 7001
---
apiVersion: v1
kind: Service
metadata:
name: books
labels:
app: books
project: booksapp
spec:
selector:
app: books
ports:
- name: service
port: 7002
---
kind: Deployment
apiVersion: apps/v1
metadata:
name: books
labels:
app: books
project: booksapp
spec:
selector:
matchLabels:
app: books
project: booksapp
replicas: 3
template:
metadata:
annotations:
linkerd.io/inject: enabled
labels:
app: books
project: booksapp
spec:
dnsPolicy: ClusterFirst
containers:
- name: service
image: buoyantio/booksapp:v0.0.3
env:
- name: DATABASE_URL
value: mysql2://booksapp:booksapp@mysql:3306/booksapp_production
- name: AUTHORS_SITE
value: http://authors:7001
args: ["prod:books"]
readinessProbe:
httpGet:
path: /ping
port: 7002
ports:
- name: service
containerPort: 7002
---
kind: Deployment
apiVersion: apps/v1
metadata:
name: traffic
labels:
app: traffic
project: booksapp
spec:
selector:
matchLabels:
app: traffic
project: booksapp
replicas: 1
template:
metadata:
annotations:
linkerd.io/inject: enabled
labels:
app: traffic
project: booksapp
spec:
dnsPolicy: ClusterFirst
containers:
- name: traffic
image: buoyantio/booksapp-traffic:v0.0.3
args:
- "webapp:7000"
---
apiVersion: v1
kind: Service
metadata:
name: authors-clone
labels:
app: authors-clone
project: booksapp
spec:
selector:
app: authors-clone
ports:
- name: service
port: 7009
---
kind: Deployment
apiVersion: apps/v1
metadata:
name: authors-clone
labels:
app: authors-clone
project: booksapp
spec:
selector:
matchLabels:
app: authors-clone
project: booksapp
replicas: 3
template:
metadata:
annotations:
linkerd.io/inject: enabled
labels:
app: authors-clone
project: booksapp
spec:
dnsPolicy: ClusterFirst
containers:
- name: service
image: buoyantio/booksapp:v0.0.3
env:
- name: DATABASE_URL
value: mysql2://booksapp:booksapp@mysql:3306/booksapp_production
- name: BOOKS_SITE
value: http://books:7002
args: ["prod:authors"]
readinessProbe:
httpGet:
path: /ping
port: 7001
ports:
- name: service
containerPort: 7009
---
apiVersion: split.smi-spec.io/v1alpha1
kind: TrafficSplit
metadata:
name: authors-split
spec:
service: authors
backends:
- service: authors
weight: 500m
- service: authors-clone
weight: 500m
---
apiVersion: split.smi-spec.io/v1alpha1
kind: TrafficSplit
metadata:
name: webapp-split
spec:
service: webapp
backends:
- service: webapp
weight: 1000m
- service: webapp-clone
weight: 0m