-
Notifications
You must be signed in to change notification settings - Fork 10
/
grpc-demo-template-istio.yaml
732 lines (705 loc) · 18.5 KB
/
grpc-demo-template-istio.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
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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
apiVersion: template.openshift.io/v1
kind: Template
labels:
template: grpc-demo-istio
metadata:
annotations:
description: A group of interconnected GRPC demo services written in Go that run on OpenShift Service Mesh.
iconClass: icon-go-gopher
openshift.io/display-name: Interconnected GRPC demo services running on OpenShift Service Mesh.
openshift.io/documentation-url: https://github.com/drhelius/grpc-demo
openshift.io/provider-display-name: Ignacio Sánchez
openshift.io/support-url: https://twitter.com/drhelius
tags: go,grpc,demo,service,istio
labels:
template: grpc-demo-istio
name: grpc-demo-istio
objects:
###############################################################################
# Account service
###############################################################################
- apiVersion: apps/v1
kind: Deployment
metadata:
annotations:
app.openshift.io/vcs-uri: https://github.com/drhelius/grpc-demo-account
app.openshift.io/vcs-ref: ${ACCOUNT_VERSION}
labels:
app: account
version: ${ACCOUNT_VERSION}
app.kubernetes.io/name: account
app.kubernetes.io/version: ${ACCOUNT_VERSION}
app.kubernetes.io/component: service
app.kubernetes.io/part-of: ${APP_NAME}
app.openshift.io/runtime: golang
group: ${APP_NAME}
name: account-${ACCOUNT_VERSION}
spec:
replicas: ${{ACCOUNT_REPLICAS}}
selector:
matchLabels:
app: account
version: ${ACCOUNT_VERSION}
template:
metadata:
annotations:
sidecar.istio.io/inject: "true"
labels:
app: account
version: ${ACCOUNT_VERSION}
spec:
containers:
- image: ${ACCOUNT_IMAGE}:${ACCOUNT_VERSION}
imagePullPolicy: Always
name: account
ports:
- containerPort: 5000
protocol: TCP
- containerPort: 8080
protocol: TCP
resources:
limits:
cpu: ${CPU_LIMIT}
memory: ${MEMORY_LIMIT}Mi
requests:
cpu: ${CPU_REQUEST}
memory: ${MEMORY_REQUEST}Mi
readinessProbe:
tcpSocket:
port: 8080
initialDelaySeconds: 5
periodSeconds: 10
livenessProbe:
tcpSocket:
port: 8080
initialDelaySeconds: 30
periodSeconds: 30
- apiVersion: v1
kind: Service
metadata:
labels:
app: account
app.kubernetes.io/name: account
app.kubernetes.io/component: service
app.kubernetes.io/part-of: ${APP_NAME}
group: ${APP_NAME}
name: account
spec:
ports:
- name: grpc
port: 5000
protocol: TCP
targetPort: 5000
- name: http
port: 8080
protocol: TCP
targetPort: 8080
selector:
app: account
- apiVersion: networking.istio.io/v1beta1
kind: VirtualService
metadata:
labels:
app: account
app.kubernetes.io/name: account
app.kubernetes.io/component: service
app.kubernetes.io/part-of: ${APP_NAME}
group: ${APP_NAME}
name: account
spec:
gateways:
- mesh
hosts:
- account
http:
- route:
- destination:
host: account
subset: current-version
weight: 100
- apiVersion: networking.istio.io/v1beta1
kind: DestinationRule
metadata:
labels:
app: account
app.kubernetes.io/name: account
app.kubernetes.io/component: service
app.kubernetes.io/part-of: ${APP_NAME}
group: ${APP_NAME}
name: account
spec:
host: account
subsets:
- name: current-version
labels:
version: ${ACCOUNT_VERSION}
- apiVersion: networking.istio.io/v1beta1
kind: Gateway
metadata:
labels:
app: account
app.kubernetes.io/name: account
app.kubernetes.io/component: service
app.kubernetes.io/part-of: ${APP_NAME}
group: ${APP_NAME}
name: account
spec:
selector:
app: istio-ingressgateway
servers:
- hosts:
- ${ACCOUNT_ROUTE}
port:
name: http2
number: 80
protocol: HTTP2
- apiVersion: networking.istio.io/v1beta1
kind: VirtualService
metadata:
labels:
app: account
app.kubernetes.io/name: account
app.kubernetes.io/component: service
app.kubernetes.io/part-of: ${APP_NAME}
group: ${APP_NAME}
name: account-gateway
spec:
hosts:
- ${ACCOUNT_ROUTE}
gateways:
- account
http:
- route:
- destination:
host: account
port:
number: 8080
weight: 100
###############################################################################
# Order service
###############################################################################
- apiVersion: apps/v1
kind: Deployment
metadata:
annotations:
app.openshift.io/vcs-uri: https://github.com/drhelius/grpc-demo-order
app.openshift.io/vcs-ref: ${ORDER_VERSION}
labels:
app: order
version: ${ORDER_VERSION}
app.kubernetes.io/name: order
app.kubernetes.io/version: ${ORDER_VERSION}
app.kubernetes.io/component: service
app.kubernetes.io/part-of: ${APP_NAME}
app.openshift.io/runtime: golang
group: ${APP_NAME}
name: order-${ORDER_VERSION}
spec:
replicas: ${{ORDER_REPLICAS}}
selector:
matchLabels:
app: order
version: ${ORDER_VERSION}
template:
metadata:
annotations:
sidecar.istio.io/inject: "true"
labels:
app: order
version: ${ORDER_VERSION}
spec:
containers:
- image: ${ORDER_IMAGE}:${ORDER_VERSION}
imagePullPolicy: Always
name: order
ports:
- containerPort: 5000
protocol: TCP
- containerPort: 8080
protocol: TCP
resources:
limits:
cpu: ${CPU_LIMIT}
memory: ${MEMORY_LIMIT}Mi
requests:
cpu: ${CPU_REQUEST}
memory: ${MEMORY_REQUEST}Mi
readinessProbe:
tcpSocket:
port: 8080
initialDelaySeconds: 5
periodSeconds: 10
livenessProbe:
tcpSocket:
port: 8080
initialDelaySeconds: 30
periodSeconds: 30
- apiVersion: v1
kind: Service
metadata:
labels:
app: order
app.kubernetes.io/name: order
app.kubernetes.io/component: service
app.kubernetes.io/part-of: ${APP_NAME}
group: ${APP_NAME}
name: order
spec:
ports:
- name: grpc
port: 5000
protocol: TCP
targetPort: 5000
- name: http
port: 8080
protocol: TCP
targetPort: 8080
selector:
app: order
- apiVersion: networking.istio.io/v1beta1
kind: VirtualService
metadata:
labels:
app: order
app.kubernetes.io/name: order
app.kubernetes.io/component: service
app.kubernetes.io/part-of: ${APP_NAME}
group: ${APP_NAME}
name: order
spec:
gateways:
- mesh
hosts:
- order
http:
- route:
- destination:
host: order
subset: current-version
weight: 100
- apiVersion: networking.istio.io/v1beta1
kind: DestinationRule
metadata:
labels:
app: order
app.kubernetes.io/name: order
app.kubernetes.io/component: service
app.kubernetes.io/part-of: ${APP_NAME}
group: ${APP_NAME}
name: order
spec:
host: order
subsets:
- name: current-version
labels:
version: ${ORDER_VERSION}
###############################################################################
# Product service
###############################################################################
- apiVersion: apps/v1
kind: Deployment
metadata:
annotations:
app.openshift.io/vcs-uri: https://github.com/drhelius/grpc-demo-product
app.openshift.io/vcs-ref: ${PRODUCT_VERSION}
labels:
app: product
version: ${PRODUCT_VERSION}
app.kubernetes.io/name: product
app.kubernetes.io/version: ${PRODUCT_VERSION}
app.kubernetes.io/component: service
app.kubernetes.io/part-of: ${APP_NAME}
app.openshift.io/runtime: golang
group: ${APP_NAME}
name: product-${PRODUCT_VERSION}
spec:
replicas: ${{PRODUCT_REPLICAS}}
selector:
matchLabels:
app: product
version: ${PRODUCT_VERSION}
template:
metadata:
annotations:
sidecar.istio.io/inject: "true"
labels:
app: product
version: ${PRODUCT_VERSION}
spec:
containers:
- image: ${PRODUCT_IMAGE}:${PRODUCT_VERSION}
imagePullPolicy: Always
name: product
ports:
- containerPort: 5000
protocol: TCP
- containerPort: 8080
protocol: TCP
resources:
limits:
cpu: ${CPU_LIMIT}
memory: ${MEMORY_LIMIT}Mi
requests:
cpu: ${CPU_REQUEST}
memory: ${MEMORY_REQUEST}Mi
readinessProbe:
tcpSocket:
port: 8080
initialDelaySeconds: 5
periodSeconds: 10
livenessProbe:
tcpSocket:
port: 8080
initialDelaySeconds: 30
periodSeconds: 30
- apiVersion: v1
kind: Service
metadata:
labels:
app: product
app.kubernetes.io/name: product
app.kubernetes.io/component: service
app.kubernetes.io/part-of: ${APP_NAME}
group: ${APP_NAME}
name: product
spec:
ports:
- name: grpc
port: 5000
protocol: TCP
targetPort: 5000
- name: http
port: 8080
protocol: TCP
targetPort: 8080
selector:
app: product
- apiVersion: networking.istio.io/v1beta1
kind: VirtualService
metadata:
labels:
app: product
app.kubernetes.io/name: product
app.kubernetes.io/component: service
app.kubernetes.io/part-of: ${APP_NAME}
group: ${APP_NAME}
name: product
spec:
gateways:
- mesh
hosts:
- product
http:
- route:
- destination:
host: product
subset: current-version
weight: 100
- apiVersion: networking.istio.io/v1beta1
kind: DestinationRule
metadata:
labels:
app: product
app.kubernetes.io/name: product
app.kubernetes.io/component: service
app.kubernetes.io/part-of: ${APP_NAME}
group: ${APP_NAME}
name: product
spec:
host: product
subsets:
- name: current-version
labels:
version: ${PRODUCT_VERSION}
###############################################################################
# User service
###############################################################################
- apiVersion: apps/v1
kind: Deployment
metadata:
annotations:
app.openshift.io/vcs-uri: https://github.com/drhelius/grpc-demo-user
app.openshift.io/vcs-ref: ${USER_VERSION}
labels:
app: user
version: ${USER_VERSION}
app.kubernetes.io/name: user
app.kubernetes.io/version: ${USER_VERSION}
app.kubernetes.io/component: service
app.kubernetes.io/part-of: ${APP_NAME}
app.openshift.io/runtime: golang
group: ${APP_NAME}
name: user-${USER_VERSION}
spec:
replicas: ${{USER_REPLICAS}}
selector:
matchLabels:
app: user
version: ${USER_VERSION}
template:
metadata:
annotations:
sidecar.istio.io/inject: "true"
labels:
app: user
version: ${USER_VERSION}
spec:
containers:
- image: ${USER_IMAGE}:${USER_VERSION}
imagePullPolicy: Always
name: user
ports:
- containerPort: 5000
protocol: TCP
- containerPort: 8080
protocol: TCP
resources:
limits:
cpu: ${CPU_LIMIT}
memory: ${MEMORY_LIMIT}Mi
requests:
cpu: ${CPU_REQUEST}
memory: ${MEMORY_REQUEST}Mi
readinessProbe:
tcpSocket:
port: 8080
initialDelaySeconds: 5
periodSeconds: 10
livenessProbe:
tcpSocket:
port: 8080
initialDelaySeconds: 30
periodSeconds: 30
- apiVersion: v1
kind: Service
metadata:
labels:
app: user
app.kubernetes.io/name: user
app.kubernetes.io/component: service
app.kubernetes.io/part-of: ${APP_NAME}
group: ${APP_NAME}
name: user
spec:
ports:
- name: grpc
port: 5000
protocol: TCP
targetPort: 5000
- name: http
port: 8080
protocol: TCP
targetPort: 8080
selector:
app: user
- apiVersion: networking.istio.io/v1beta1
kind: VirtualService
metadata:
labels:
app: user
app.kubernetes.io/name: user
app.kubernetes.io/component: service
app.kubernetes.io/part-of: ${APP_NAME}
group: ${APP_NAME}
name: user
spec:
gateways:
- mesh
hosts:
- user
http:
- route:
- destination:
host: user
subset: current-version
weight: 100
- apiVersion: networking.istio.io/v1beta1
kind: DestinationRule
metadata:
labels:
app: user
app.kubernetes.io/name: user
app.kubernetes.io/component: service
app.kubernetes.io/part-of: ${APP_NAME}
group: ${APP_NAME}
name: user
spec:
host: user
subsets:
- name: current-version
labels:
version: ${USER_VERSION}
###############################################################################
# httpbin
###############################################################################
- apiVersion: networking.istio.io/v1beta1
kind: ServiceEntry
metadata:
labels:
app: httpbin
app.kubernetes.io/name: httpbin
app.kubernetes.io/component: service
app.kubernetes.io/part-of: ${APP_NAME}
group: ${APP_NAME}
name: httpbin
spec:
hosts:
- httpbin.org
ports:
- number: 443
name: https
protocol: HTTPS
resolution: DNS
- apiVersion: networking.istio.io/v1beta1
kind: Gateway
metadata:
labels:
app: httpbin
app.kubernetes.io/name: httpbin
app.kubernetes.io/component: service
app.kubernetes.io/part-of: ${APP_NAME}
group: ${APP_NAME}
name: httpbin
spec:
selector:
app: istio-egressgateway
servers:
- port:
number: 443
name: https
protocol: HTTPS
hosts:
- httpbin.org
tls:
mode: PASSTHROUGH
- apiVersion: networking.istio.io/v1beta1
kind: DestinationRule
metadata:
labels:
app: httpbin
app.kubernetes.io/name: httpbin
app.kubernetes.io/component: service
app.kubernetes.io/part-of: ${APP_NAME}
group: ${APP_NAME}
name: httpbin
spec:
host: istio-egressgateway.istio-system.svc.cluster.local
subsets:
- name: httpbin
- apiVersion: networking.istio.io/v1beta1
kind: VirtualService
metadata:
labels:
app: httpbin
app.kubernetes.io/name: httpbin
app.kubernetes.io/component: service
app.kubernetes.io/part-of: ${APP_NAME}
group: ${APP_NAME}
name: httpbin
spec:
hosts:
- httpbin.org
gateways:
- mesh
- httpbin
tls:
- match:
- gateways:
- mesh
port: 443
sniHosts:
- httpbin.org
route:
- destination:
host: istio-egressgateway.istio-system.svc.cluster.local
subset: httpbin
port:
number: 443
- match:
- gateways:
- httpbin
port: 443
sniHosts:
- httpbin.org
route:
- destination:
host: httpbin.org
port:
number: 443
weight: 100
###############################################################################
# Parameters
###############################################################################
parameters:
- description: Sets the Application name.
name: APP_NAME
displayName: Application name
value: grpc-demo-istio
- description: Sets the Account Service image.
name: ACCOUNT_IMAGE
displayName: Account Service image
value: quay.io/isanchez/grpc-demo-account
- description: Sets the Account Service version.
name: ACCOUNT_VERSION
displayName: Account Service version
value: v1.0.0
- description: Specifies how many instances of the Account Service to create in the cluster.
name: ACCOUNT_REPLICAS
displayName: Account Service replicas
value: "1"
- description: Specifies how many instances of the Account Service to create in the cluster.
name: ACCOUNT_ROUTE
displayName: Route URL for external access to Account Service
value: "account-grpc-demo.mycluster.com"
- description: Sets the Order Service image.
name: ORDER_IMAGE
displayName: Order Service image
value: quay.io/isanchez/grpc-demo-order
- description: Sets the Order Service version.
name: ORDER_VERSION
displayName: Order Service version
value: v1.0.0
- description: Specifies how many instances of the Order Service to create in the cluster.
name: ORDER_REPLICAS
displayName: Order Service replicas
value: "1"
- description: Sets the Product Service image.
name: PRODUCT_IMAGE
displayName: Product Service image
value: quay.io/isanchez/grpc-demo-product
- description: Sets the Product Service version.
name: PRODUCT_VERSION
displayName: Product Service version
value: v1.0.0
- description: Specifies how many instances of the Product Service to create in the cluster.
name: PRODUCT_REPLICAS
displayName: Product Service replicas
value: "1"
- description: Sets the User Service image.
name: USER_IMAGE
displayName: User Service image
value: quay.io/isanchez/grpc-demo-user
- description: Sets the User Service version.
name: USER_VERSION
displayName: User Service version
value: v1.0.0
- description: Specifies how many instances of the User Service to create in the cluster.
name: USER_REPLICAS
displayName: User Service replicas
value: "1"
- description: Sets the memory limit in Mi, available to each service.
name: MEMORY_LIMIT
displayName: Service Memory Limit
value: "200"
- description: Sets the initial memory request in Mi for each service.
name: MEMORY_REQUEST
displayName: Service Memory Request
value: "100"
- description: Sets the CPU limit, available to each service.
name: CPU_LIMIT
displayName: Service CPU Limit
value: "0.5"
- description: Sets the initial CPU request for each service.
name: CPU_REQUEST
displayName: Service CPU Request
value: "0.1"