-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwine-project-template.yaml
631 lines (597 loc) · 16.7 KB
/
wine-project-template.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
apiVersion: v1
kind: Template
metadata:
name: wine-template
annotations:
openshift.io/display-name: "Wine Application"
description: "Example application based on a Spring Boot microservice plus MongoDB\n\nFor more information see https://github.com/cvicens/wine"
tags: "spring-boot,mongodb"
iconClass: "icon-spring"
message: "Your credentials for MongoDB are ${MONGODB_USER}:${MONGODB_PASSWORD} with admin password: ${MONGODB_ADMIN_PASSWORD}"
objects:
# Data exposed
- kind: Secret
apiVersion: v1
metadata:
name: ${NAME}
annotations:
template.openshift.io/expose-admin_password: '{.data[''database-admin-password'']}'
template.openshift.io/expose-password: '{.data[''database-password'']}'
template.openshift.io/expose-username: '{.data[''database-user'']}'
stringData:
database-admin-password: ${MONGODB_ADMIN_PASSWORD}
database-password: ${MONGODB_PASSWORD}
database-user: ${MONGODB_USER}
# MongoDB persistent volume claim
- kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: ${DATABASE_SERVICE_NAME}
annotations:
description: Defines the PVC associated to MongoDB
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: ${VOLUME_CAPACITY}
# MongoDB deployment configuration
- kind: DeploymentConfig
apiVersion: v1
metadata:
name: ${DATABASE_SERVICE_NAME}
labels:
application: ${NAME}
deploymentConfig: ${NAME}
annotations:
description: Defines how to deploy the database
spec:
replicas: 1
selector:
name: ${DATABASE_SERVICE_NAME}
strategy:
type: Recreate
template:
metadata:
labels:
name: ${DATABASE_SERVICE_NAME}
application: ${NAME}
name: ${DATABASE_SERVICE_NAME}
spec:
containers:
- env:
- name: MONGODB_USER
valueFrom:
secretKeyRef:
key: database-user
name: ${NAME}
- name: MONGODB_PASSWORD
valueFrom:
secretKeyRef:
key: database-password
name: ${NAME}
- name: MONGODB_ADMIN_PASSWORD
valueFrom:
secretKeyRef:
key: database-admin-password
name: ${NAME}
- name: MONGODB_DATABASE
value: ${MONGODB_DATABASE}
image: ' '
livenessProbe:
initialDelaySeconds: 30
tcpSocket:
port: 27017
timeoutSeconds: 1
name: mongodb
ports:
- containerPort: 27017
readinessProbe:
exec:
command:
- /bin/sh
- -i
- -c
- mongo 127.0.0.1:27017/$MONGODB_DATABASE -u $MONGODB_USER -p $MONGODB_PASSWORD
--eval="quit()"
initialDelaySeconds: 3
timeoutSeconds: 1
resources:
limits:
memory: ${MEMORY_MONGODB_LIMIT}
volumeMounts:
- mountPath: /var/lib/mongodb/data
name: ${DATABASE_SERVICE_NAME}-data
volumes:
- name: ${DATABASE_SERVICE_NAME}-data
persistentVolumeClaim:
claimName: ${DATABASE_SERVICE_NAME}
triggers:
- imageChangeParams:
automatic: true
containerNames:
- mongodb
from:
kind: ImageStreamTag
name: mongodb:${MONGODB_VERSION}
namespace: ${NAMESPACE}
type: ImageChange
- type: ConfigChange
# MongoDB service
- kind: Service
apiVersion: v1
metadata:
name: ${DATABASE_SERVICE_NAME}
annotations:
description: Exposes the database server
template.openshift.io/expose-uri: mongodb://{.spec.clusterIP}:{.spec.ports[?(.name=="mongo")].port}
spec:
ports:
- name: mongodb
port: 27017
targetPort: 27017
selector:
name: ${DATABASE_SERVICE_NAME}
# Wine Pairing Microservice
- kind: ImageStream
apiVersion: v1
metadata:
name: ${NAME}-pairing
labels:
application: ${NAME}
annotations:
description: Keeps track of changes in the application image
spec:
dockerImageRepository: ''
tags:
- name: latest
- kind: BuildConfig
apiVersion: v1
metadata:
name: ${NAME}-pairing
labels:
application: ${NAME}
spec:
output:
to:
kind: ImageStreamTag
name: ${NAME}-pairing:latest
source:
contextDir: pairing
git:
ref: master
uri: ${ROOT_GIT_URL}
type: Git
strategy:
sourceStrategy:
env:
- name: MAVEN_MIRROR_URL
value: ${MAVEN_MIRROR_URL}
from:
kind: ImageStreamTag
name: redhat-openjdk18-openshift:1.1
namespace: ${NAMESPACE}
type: Source
triggers:
- github:
secret: ${GITHUB_WEBHOOK_SECRET}
type: GitHub
- generic:
secret: ${GENERIC_WEBHOOK_SECRET}
type: Generic
- imageChange: {}
type: ImageChange
- type: ConfigChange
- kind: DeploymentConfig
apiVersion: v1
metadata:
name: ${NAME}-pairing
# Labels, we'll use deploymentConfig as selector in our service
labels:
application: ${NAME}
deploymentConfig: ${NAME}-pairing
spec:
replicas: 1
selector:
deploymentConfig: ${NAME}-pairing
strategy:
activeDeadlineSeconds: 21600
resources: {}
rollingParams:
intervalSeconds: 1
maxSurge: 25%
maxUnavailable: 25%
timeoutSeconds: 600
updatePeriodSeconds: 1
type: Rolling
template:
metadata:
# Labels copied to every POD created
# Important: Selector based on deploymentConfig
labels:
application: ${NAME}-pairing
deploymentConfig: ${NAME}-pairing
spec:
containers:
- env:
- name: MONGODB_USER
valueFrom:
secretKeyRef:
key: database-user
name: ${NAME}
- name: MONGODB_PASSWORD
valueFrom:
secretKeyRef:
key: database-password
name: ${NAME}
- name: MONGODB_ADMIN_PASSWORD
valueFrom:
secretKeyRef:
key: database-admin-password
name: ${NAME}
- name: MONGODB_DATABASE
value: ${MONGODB_DATABASE}
- name: DATABASE_SERVICE_NAME
value: ${DATABASE_SERVICE_NAME}
- name: DATABASE_SERVICE_PORT
value: "27017"
- name: TRACING_SERVICE_NAME
value: ${TRACING_SERVICE_NAME}
- name: TRACING_SERVICE_PORT
value: ${TRACING_SERVICE_PORT}
image: ${NAME}-pairing
imagePullPolicy: Always
name: ${NAME}-pairing
ports:
- containerPort: 8080
protocol: TCP
- containerPort: 8443
protocol: TCP
- containerPort: 8778
protocol: TCP
livenessProbe:
failureThreshold: 10
httpGet:
path: /health
port: 8080
scheme: HTTP
initialDelaySeconds: 30
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 5
readinessProbe:
failureThreshold: 10
httpGet:
path: /readiness
port: 8080
scheme: HTTP
initialDelaySeconds: 30
periodSeconds: 5
successThreshold: 1
timeoutSeconds: 1
resources:
limits:
memory: ${MEMORY_LIMIT}
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
dnsPolicy: ClusterFirst
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
terminationGracePeriodSeconds: 30
triggers:
- imageChangeParams:
automatic: true
containerNames:
- ${NAME}-pairing
from:
kind: ImageStreamTag
name: ${NAME}-pairing:latest
type: ImageChange
- type: ConfigChange
- kind: Service
apiVersion: v1
metadata:
name: ${NAME}-pairing
labels:
application: ${NAME}
deploymentConfig: ${NAME}-pairing
annotations:
description: The application's http port.
service.alpha.openshift.io/dependencies: '[{"name": "${DATABASE_SERVICE_NAME}", "kind": "Service"}]'
spec:
ports:
- name: 8080-tcp
port: 8080
targetPort: 8080
# Selects PODs labelled with deploymentConfig === ${NAME}
selector:
deploymentConfig: ${NAME}-pairing
- kind: Route
apiVersion: v1
metadata:
name: ${NAME}-pairing
annotations:
template.openshift.io/expose-uri: http://{.spec.host}{.spec.path}
spec:
host: ${APPLICATION_DOMAIN}
to:
kind: Service
name: ${NAME}-pairing
# Wine Cellar Microservice
- kind: ImageStream
apiVersion: v1
metadata:
name: ${NAME}-cellar
labels:
application: ${NAME}
annotations:
description: Keeps track of changes in the application image
spec:
dockerImageRepository: ''
tags:
- name: latest
- kind: BuildConfig
apiVersion: v1
metadata:
name: ${NAME}-cellar
labels:
application: ${NAME}
spec:
output:
to:
kind: ImageStreamTag
name: ${NAME}-cellar:latest
source:
contextDir: cellar
git:
ref: master
uri: ${ROOT_GIT_URL}
type: Git
strategy:
sourceStrategy:
env:
- name: MAVEN_MIRROR_URL
value: ${MAVEN_MIRROR_URL}
from:
kind: ImageStreamTag
name: redhat-openjdk18-openshift:1.1
namespace: ${NAMESPACE}
type: Source
triggers:
- github:
secret: ${GITHUB_WEBHOOK_SECRET}
type: GitHub
- generic:
secret: ${GENERIC_WEBHOOK_SECRET}
type: Generic
- imageChange: {}
type: ImageChange
- type: ConfigChange
- kind: DeploymentConfig
apiVersion: v1
metadata:
name: ${NAME}-cellar
# Labels, we'll use deploymentConfig as selector in our service
labels:
application: ${NAME}
deploymentConfig: ${NAME}-cellar
spec:
replicas: 1
selector:
deploymentConfig: ${NAME}-cellar
strategy:
activeDeadlineSeconds: 21600
resources: {}
rollingParams:
intervalSeconds: 1
maxSurge: 25%
maxUnavailable: 25%
timeoutSeconds: 600
updatePeriodSeconds: 1
type: Rolling
template:
metadata:
# Labels copied to every POD created
# Important: Selector based on deploymentConfig
labels:
application: ${NAME}
deploymentConfig: ${NAME}-cellar
spec:
containers:
- env:
- name: MONGODB_USER
valueFrom:
secretKeyRef:
key: database-user
name: ${NAME}
- name: MONGODB_PASSWORD
valueFrom:
secretKeyRef:
key: database-password
name: ${NAME}
- name: MONGODB_ADMIN_PASSWORD
valueFrom:
secretKeyRef:
key: database-admin-password
name: ${NAME}
- name: MONGODB_DATABASE
value: ${MONGODB_DATABASE}
- name: DATABASE_SERVICE_NAME
value: ${DATABASE_SERVICE_NAME}
- name: DATABASE_SERVICE_PORT
value: "27017"
- name: TRACING_SERVICE_NAME
value: ${TRACING_SERVICE_NAME}
- name: TRACING_SERVICE_PORT
value: ${TRACING_SERVICE_PORT}
image: ${NAME}-cellar
imagePullPolicy: Always
name: ${NAME}-cellar
ports:
- containerPort: 8080
protocol: TCP
- containerPort: 8443
protocol: TCP
- containerPort: 8778
protocol: TCP
livenessProbe:
failureThreshold: 10
httpGet:
path: /health
port: 8080
scheme: HTTP
initialDelaySeconds: 30
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 5
readinessProbe:
failureThreshold: 10
httpGet:
path: /readiness
port: 8080
scheme: HTTP
initialDelaySeconds: 30
periodSeconds: 5
successThreshold: 1
timeoutSeconds: 1
resources:
limits:
memory: ${MEMORY_LIMIT}
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
dnsPolicy: ClusterFirst
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
terminationGracePeriodSeconds: 30
triggers:
- imageChangeParams:
automatic: true
containerNames:
- ${NAME}-cellar
from:
kind: ImageStreamTag
name: ${NAME}-cellar:latest
type: ImageChange
- type: ConfigChange
- kind: Service
apiVersion: v1
metadata:
name: ${NAME}-cellar
labels:
application: ${NAME}
deploymentConfig: ${NAME}-cellar
annotations:
description: The application's http port.
service.alpha.openshift.io/dependencies: '[{"name": "${DATABASE_SERVICE_NAME}", "kind": "Service"}]'
spec:
ports:
- name: 8080-tcp
port: 8080
targetPort: 8080
# Selects PODs labelled with deploymentConfig === ${NAME}
selector:
deploymentConfig: ${NAME}-cellar
- kind: Route
apiVersion: v1
metadata:
name: ${NAME}-cellar
annotations:
template.openshift.io/expose-uri: http://{.spec.host}{.spec.path}
spec:
host: ${APPLICATION_DOMAIN}
to:
kind: Service
name: ${NAME}-cellar
# Parameters
parameters:
- description: The name assigned to all the objects defined in this template.
displayName: Name
name: NAME
required: true
value: wine
- description: Root Git URL, leave it by default if you don't know what you're doing ;-)
displayName: Root Git URL
name: ROOT_GIT_URL
required: true
value: https://github.com/cvicens/wine
- description: This template allows you to hook with jaeger set up here the service name
displayName: Tracing Service Name
name: TRACING_SERVICE_NAME
required: false
- description: OpenTracing compatible Service Port (http://opentracing.io/)
displayName: Tracing Service Port
name: TRACING_SERVICE_PORT
required: false
- description: Maximum amount of memory the Spring Boot API container can use.
displayName: Memory Limit
name: MEMORY_LIMIT
required: true
value: 512Mi
- description: The exposed hostname that will route to the service, if left
blank a value will be defaulted.
displayName: Application Hostname
name: APPLICATION_DOMAIN
- displayName: Database Service Name
name: DATABASE_SERVICE_NAME
required: true
value: wine-mongodb
- description: Maximum amount of memory the MongoDB container can use.
displayName: Memory Limit (MongoDB)
name: MEMORY_MONGODB_LIMIT
required: true
value: 512Mi
- description: Volume space available for data, e.g. 512Mi, 2Gi
displayName: Volume Capacity
name: VOLUME_CAPACITY
required: true
value: 1Gi
- description: Spring Boot API Service database user name
displayName: Database Username
from: user[a-zA-Z0-9]{3}
generate: expression
name: MONGODB_USER
required: true
- description: Spring Boot API Service database user password
displayName: Database User Password
from: '[a-zA-Z0-9]{8}'
generate: expression
name: MONGODB_PASSWORD
required: true
- description: Spring Boot API Service database admin password
displayName: Database Admin Password
from: '[a-zA-Z0-9]{8}'
generate: expression
name: MONGODB_ADMIN_PASSWORD
required: true
- description: Name of the MongoDB database accessed.
displayName: MongoDB Database Name
name: MONGODB_DATABASE
required: true
value: sampledb
- description: Version of MongoDB image to be used (2.4, 2.6, 3.2 or latest).
displayName: Version of MongoDB Image
name: MONGODB_VERSION
required: true
value: "3.2"
- description: The OpenShift Namespace where the ImageStream resides.
displayName: Namespace
name: NAMESPACE
value: openshift
- description: Spring Boot API Service GITHUB Web-Hook
displayName: API Service GITHUB Web-Hook
from: '[a-zA-Z0-9]{8}'
generate: expression
name: GITHUB_WEBHOOK_SECRET
required: true
- description: Spring Boot API Service Generic Web-Hook
displayName: API Service Generic Web-Hook
from: '[a-zA-Z0-9]{8}'
generate: expression
name: GENERIC_WEBHOOK_SECRET
required: true
- description: Maven mirror URL
displayName: Maven mirror URL
name: MAVEN_MIRROR_URL
required: false