-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.yml
449 lines (449 loc) · 10.9 KB
/
template.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
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
kind: Template
apiVersion: template.openshift.io/v1
parameters:
- name: BRANCH
required: true
- name: APP
required: true
value: finbif-dashboard
- name: ACCESS_MODE
required: true
value: ReadWriteOnce
- name: STORAGE_CLASS
required: true
value: standard-csi
- name: STORAGE
required: true
value: "20Gi"
- name: API
required: true
value: plumber
- name: APP_PORT
required: true
value: "3838"
- name: API_PORT
required: true
value: "8000"
- name: PROXY_PORT
required: true
value: "8080"
- name: PROXY_HEALTH_PORT
required: true
value: "8081"
- name: DB
required: true
value: postgres
- name: DB_HEALTHCHECK
required: true
value: '[
"sh",
"-c",
"PGPASSWORD=$POSTGRES_PASSWORD
psql -h 0.0.0.0 -U postgres -d postgres -c \"SELECT 1\""
]'
- name: DB_PORT
required: true
value: "5432"
- name: DB_PATH
required: true
value: /var/lib/postgresql/data
- name: DB_DATA
required: true
value: /pgdata
- name: DB_PASSWORD
required: true
- name: NGINX_TEMPLATE
required: true
- name: TLS_CRT
required: true
- name: TLS_KEY
required: true
- name: FINBIF_PRIVATE_API
required: true
- name: HOST
required: true
- name: APP_HEALTH
required: true
value: /robots.txt
- name: API_HEALTH
required: true
value: /healthz
- name: PROXY_HEALTH
required: true
value: /healthz
- name: LIVENESS_PERIOD
required: true
value: "30"
- name: FAILURE_THRESHOLD
required: true
value: "5"
- name: READINESS_PERIOD
required: true
value: "5"
- name: SMTP_SERVER
required: true
- name: SMTP_PORT
required: true
- name: ERROR_EMAIL_TO
required: true
- name: ERROR_EMAIL_FROM
required: true
- name: MEMORY
required: true
metadata:
name: ${APP}
objects:
- kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: ${DB}-${BRANCH}
spec:
storageClassName: ${STORAGE_CLASS}
accessModes:
- ${ACCESS_MODE}
resources:
requests:
storage: ${STORAGE}
- kind: ConfigMap
apiVersion: v1
metadata:
name: ${APP}-${BRANCH}
data:
branch: ${BRANCH}
db_port: ${DB_PORT}
app_port: ${APP_PORT}
api_port: ${API_PORT}
- kind: ConfigMap
apiVersion: v1
metadata:
name: nginx-template-${BRANCH}
data:
default.conf.template: ${NGINX_TEMPLATE}
- kind: Secret
apiVersion: v1
metadata:
name: ${APP}-${BRANCH}
type: Opaque
data:
db_password: ${DB_PASSWORD}
- kind: Secret
apiVersion: v1
metadata:
name: tls-${BRANCH}
type: kubernetes.io/tls
data:
tls.crt: ${TLS_CRT}
tls.key: ${TLS_KEY}
- kind: Deployment
apiVersion: apps/v1
metadata:
name: ${APP}-${BRANCH}
labels:
app: ${APP}
spec:
replicas: 1
selector:
matchLabels:
app: ${APP}
strategy:
type: RollingUpdate
template:
metadata:
labels:
app: ${APP}
branch: ${BRANCH}
port: ${PROXY_PORT}
spec:
volumes:
- name: tls-${BRANCH}
secret:
secretName: tls-${BRANCH}
- name: nginx-template-${BRANCH}
configMap:
name: nginx-template-${BRANCH}
containers:
- image: nginxinc/nginx-unprivileged:1.27.1
imagePullPolicy: Always
name: nginx-${BRANCH}
env:
- name: PROXY_PORT
value: ${PROXY_PORT}
- name: APP_PORT
value: ${APP_PORT}
startupProbe:
httpGet:
path: ${PROXY_HEALTH}
port: ${{PROXY_HEALTH_PORT}}
failureThreshold: ${{FAILURE_THRESHOLD}}
periodSeconds: ${{LIVENESS_PERIOD}}
livenessProbe:
httpGet:
path: ${PROXY_HEALTH}
port: ${{PROXY_HEALTH_PORT}}
failureThreshold: ${{FAILURE_THRESHOLD}}
periodSeconds: ${{LIVENESS_PERIOD}}
readinessProbe:
httpGet:
path: ${PROXY_HEALTH}
port: ${{PROXY_HEALTH_PORT}}
periodSeconds: ${{READINESS_PERIOD}}
ports:
- containerPort: ${{PROXY_PORT}}
resources:
limits:
cpu: "500m"
memory: "500Mi"
volumeMounts:
- name: tls-${BRANCH}
mountPath: /etc/ssl
readOnly: true
- name: nginx-template-${BRANCH}
mountPath: /etc/nginx/templates
readOnly: true
- image: ghcr.io/luomus/${APP}:${BRANCH}
imagePullPolicy: Always
name: ${APP}-${BRANCH}
command:
- '/home/user/render.r'
env:
- name: DASHBOARD_API
value: http://${API}-${BRANCH}.${APP}.svc.cluster.local:${API_PORT}
- name: BRANCH
valueFrom:
configMapKeyRef:
name: ${APP}-${BRANCH}
key: branch
- name: HOST
value: ${HOST}
startupProbe:
httpGet:
path: ${APP_HEALTH}
port: ${{APP_PORT}}
failureThreshold: ${{FAILURE_THRESHOLD}}
periodSeconds: ${{LIVENESS_PERIOD}}
livenessProbe:
httpGet:
path: ${APP_HEALTH}
port: ${{APP_PORT}}
failureThreshold: ${{FAILURE_THRESHOLD}}
periodSeconds: ${{LIVENESS_PERIOD}}
readinessProbe:
httpGet:
path: ${APP_HEALTH}
port: ${{APP_PORT}}
periodSeconds: ${{READINESS_PERIOD}}
resources:
limits:
cpu: "2000m"
memory: ${MEMORY}
- kind: Deployment
apiVersion: apps/v1
metadata:
name: ${API}-${BRANCH}
labels:
app: ${APP}
spec:
replicas: 1
selector:
matchLabels:
app: ${APP}
strategy:
type: RollingUpdate
template:
metadata:
labels:
app: ${APP}
branch: ${BRANCH}
port: ${API_PORT}
spec:
containers:
- image: ghcr.io/luomus/${APP}:${BRANCH}
imagePullPolicy: Always
name: ${API}-${BRANCH}
env:
- name: FINBIF_PRIVATE_API
value: ${FINBIF_PRIVATE_API}
- name: FINBIF_USE_PRIVATE_API
value: "true"
- name: FINBIF_DEBUG
value: stdout
- name: FINBIF_USER_AGENT
value: https://github.com/luomus/${APP}:${BRANCH}
- name: PGHOST
value: ${DB}-${BRANCH}
- name: PGPORT
value: ${DB_PORT}
- name: PGUSER
value: ${DB}
- name: PGPASSWORD
valueFrom:
secretKeyRef:
name: ${APP}-${BRANCH}
key: db_password
- name: DB_NAME
value: ${DB}
- name: BRANCH
valueFrom:
configMapKeyRef:
name: ${APP}-${BRANCH}
key: branch
- name: SMTP_SERVER
value: ${SMTP_SERVER}
- name: SMTP_PORT
value: ${SMTP_PORT}
- name: ERROR_EMAIL_TO
value: ${ERROR_EMAIL_TO}
- name: ERROR_EMAIL_FROM
value: ${ERROR_EMAIL_FROM}
ports:
- containerPort: ${{API_PORT}}
startupProbe:
httpGet:
path: ${API_HEALTH}
port: ${{API_PORT}}
failureThreshold: ${{FAILURE_THRESHOLD}}
periodSeconds: ${{LIVENESS_PERIOD}}
livenessProbe:
httpGet:
path: ${API_HEALTH}
port: ${{API_PORT}}
failureThreshold: ${{FAILURE_THRESHOLD}}
periodSeconds: ${{LIVENESS_PERIOD}}
readinessProbe:
httpGet:
path: ${API_HEALTH}
port: ${{API_PORT}}
periodSeconds: ${{READINESS_PERIOD}}
resources:
limits:
cpu: "2000m"
memory: ${MEMORY}
- kind: Deployment
apiVersion: apps/v1
metadata:
name: ${DB}-${BRANCH}
labels:
app: ${APP}
spec:
replicas: 1
selector:
matchLabels:
app: ${APP}
strategy:
type: Recreate
template:
metadata:
labels:
app: ${APP}
branch: ${BRANCH}
port: ${DB_PORT}
spec:
containers:
- image: ghcr.io/luomus/postgis-image:main
imagePullPolicy: Always
name: ${DB}-${BRANCH}
volumeMounts:
- mountPath: ${DB_PATH}
name: ${DB}-${BRANCH}
ports:
- containerPort: ${{DB_PORT}}
startupProbe:
exec:
command: ${{DB_HEALTHCHECK}}
failureThreshold: ${{FAILURE_THRESHOLD}}
periodSeconds: ${{LIVENESS_PERIOD}}
livenessProbe:
exec:
command: ${{DB_HEALTHCHECK}}
failureThreshold: ${{FAILURE_THRESHOLD}}
periodSeconds: ${{LIVENESS_PERIOD}}
readinessProbe:
exec:
command: ${{DB_HEALTHCHECK}}
periodSeconds: ${{READINESS_PERIOD}}
env:
- name: PGDATA
value: ${DB_PATH}${DB_DATA}
- name: POSTGRES_DB
value: ${DB}
- name: POSTGRES_PORT
valueFrom:
configMapKeyRef:
name: ${APP}-${BRANCH}
key: db_port
- name: POSTGRES_USER
value: ${DB}
- name: POSTGRES_PASSWORD
valueFrom:
secretKeyRef:
name: ${APP}-${BRANCH}
key: db_password
resources:
limits:
cpu: "500m"
memory: "1Gi"
volumes:
- name: ${DB}-${BRANCH}
persistentVolumeClaim:
claimName: ${DB}-${BRANCH}
- kind: Service
apiVersion: v1
metadata:
name: ${APP}-${BRANCH}
labels:
app: ${APP}
spec:
ports:
- name: ${PROXY_PORT}
port: ${{PROXY_PORT}}
targetPort: ${{PROXY_PORT}}
selector:
app: ${APP}
branch: ${BRANCH}
port: ${PROXY_PORT}
- kind: Service
apiVersion: v1
metadata:
name: ${API}-${BRANCH}
labels:
app: ${APP}
spec:
ports:
- name: ${API_PORT}
port: ${{API_PORT}}
targetPort: ${{API_PORT}}
selector:
app: ${APP}
branch: ${BRANCH}
port: ${API_PORT}
- kind: Service
apiVersion: v1
metadata:
name: ${DB}-${BRANCH}
labels:
app: ${APP}
spec:
ports:
- name: ${DB_PORT}
port: ${{DB_PORT}}
targetPort: ${{DB_PORT}}
selector:
app: ${APP}
branch: ${BRANCH}
port: ${DB_PORT}
- kind: Route
apiVersion: v1
metadata:
name: ${APP}-${BRANCH}
labels:
app: ${APP}
spec:
host: ${HOST}
port:
targetPort: ${{PROXY_PORT}}
tls:
termination: passthrough
insecureEdgeTerminationPolicy: Redirect
to:
kind: Service
name: ${APP}-${BRANCH}