-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.yml
262 lines (262 loc) · 6.22 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
kind: Template
apiVersion: template.openshift.io/v1
parameters:
- name: APP
required: true
value: finbif-ipt
- name: BRANCH
required: true
- name: DATA_DIR
required: true
value: /srv/ipt
- name: STORAGE_CLASS
required: true
value: standard-csi
- name: ACCESS_MODE
required: true
value: ReadWriteOnce
- name: APP_PORT
required: true
value: "8080"
- name: API
required: true
value: plumber
- name: API_PORT
required: true
value: "8000"
- name: API_CMD
required: true
value: '[
"sh",
"-c",
"Rscript --vanilla init.r"
]'
- name: CRON
required: true
value: job
- name: CRON_SCHEDULE
required: true
value: "0 0 * * 0"
- name: CRON_CMD
required: true
value: '[
"backup.sh"
]'
- name: CRON_LIMIT
required: true
value: "7"
- name: CRON_CONCURRENCY
required: true
value: "Forbid"
- name: LIVENESS_PERIOD
required: true
value: "45"
- name: FAILURE_THRESHOLD
required: true
value: "5"
- name: READINESS_PERIOD
required: true
value: "5"
- name: STORAGE
required: true
- name: HOST
required: true
- name: RCLONE_ACCESS_KEY_ID
required: true
- name: RCLONE_SECRET_ACCESS_KEY
required: true
metadata:
name: ${APP}
objects:
- kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: ${APP}-${BRANCH}
spec:
storageClassName: ${STORAGE_CLASS}
accessModes:
- ${ACCESS_MODE}
resources:
requests:
storage: ${STORAGE}
- kind: Secret
apiVersion: v1
metadata:
name: ${APP}-${BRANCH}
type: Opaque
data:
rclone_access_key_id: ${RCLONE_ACCESS_KEY_ID}
rclone_secret_access_key: ${RCLONE_SECRET_ACCESS_KEY}
- kind: Deployment
apiVersion: apps/v1
metadata:
name: ${APP}-${BRANCH}
labels:
app: ${APP}
spec:
replicas: 1
selector:
matchLabels:
app: ${APP}
strategy:
type: Recreate
template:
metadata:
labels:
app: ${APP}
branch: ${BRANCH}
spec:
containers:
- image: ghcr.io/luomus/${APP}:${BRANCH}
imagePullPolicy: Always
name: ${APP}-${BRANCH}
resources:
limits:
cpu: 250m
memory: 500Mi
ports:
- containerPort: ${{APP_PORT}}
volumeMounts:
- mountPath: ${DATA_DIR}
name: ${APP}-${BRANCH}
startupProbe:
httpGet:
path: /about.do
port: ${{APP_PORT}}
failureThreshold: ${{FAILURE_THRESHOLD}}
periodSeconds: ${{LIVENESS_PERIOD}}
livenessProbe:
httpGet:
path: /about.do
port: ${{APP_PORT}}
failureThreshold: ${{FAILURE_THRESHOLD}}
periodSeconds: ${{LIVENESS_PERIOD}}
readinessProbe:
httpGet:
path: /
port: ${{APP_PORT}}
periodSeconds: ${{READINESS_PERIOD}}
env:
- name: BRANCH
value: ${BRANCH}
- name: HOST
value: ${HOST}
- image: ghcr.io/luomus/${APP}:${BRANCH}
imagePullPolicy: Always
name: ${API}-${BRANCH}
resources:
limits:
cpu: 250m
memory: 500Mi
command: ${{API_CMD}}
ports:
- containerPort: ${{API_PORT}}
volumeMounts:
- mountPath: ${DATA_DIR}
name: ${APP}-${BRANCH}
startupProbe:
httpGet:
path: /healthz
port: ${{APP_PORT}}
failureThreshold: ${{FAILURE_THRESHOLD}}
periodSeconds: ${{LIVENESS_PERIOD}}
livenessProbe:
httpGet:
path: /healthz
port: ${{API_PORT}}
failureThreshold: ${{FAILURE_THRESHOLD}}
periodSeconds: ${{LIVENESS_PERIOD}}
readinessProbe:
httpGet:
path: /healthz
port: ${{API_PORT}}
periodSeconds: ${{READINESS_PERIOD}}
volumes:
- name: ${APP}-${BRANCH}
persistentVolumeClaim:
claimName: ${APP}-${BRANCH}
- kind: Service
apiVersion: v1
metadata:
name: ${APP}-${BRANCH}
labels:
app: ${APP}
spec:
ports:
- name: ${APP_PORT}
port: ${{APP_PORT}}
targetPort: ${{APP_PORT}}
selector:
app: ${APP}
branch: ${BRANCH}
- 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}
- kind: Route
apiVersion: v1
metadata:
name: ${APP}-${BRANCH}
labels:
app: ${APP}
spec:
host: ${HOST}
port:
targetPort: ${{APP_PORT}}
tls:
insecureEdgeTerminationPolicy: Redirect
to:
kind: Service
name: ${APP}-${BRANCH}
- kind: CronJob
apiVersion: batch/v1
metadata:
name: ${APP}-${BRANCH}
spec:
schedule: ${CRON_SCHEDULE}
concurrencyPolicy: ${CRON_CONCURRENCY}
successfulJobsHistoryLimit: ${{CRON_LIMIT}}
failedJobsHistoryLimit: ${{CRON_LIMIT}}
jobTemplate:
spec:
template:
metadata:
labels:
app: ${APP}
spec:
containers:
- name: ${APP}-${BRANCH}
image: ghcr.io/luomus/${APP}:${BRANCH}
command: ${{CRON_CMD}}
env:
- name: RCLONE_CONFIG_DEFAULT_ACCESS_KEY_ID
valueFrom:
secretKeyRef:
name: ${APP}-${BRANCH}
key: rclone_access_key_id
- name: RCLONE_CONFIG_DEFAULT_SECRET_ACCESS_KEY
valueFrom:
secretKeyRef:
name: ${APP}-${BRANCH}
key: rclone_secret_access_key
- name: API_HOSTNAME
value: ${API}-${BRANCH}
- name: API_PORT
value: ${API_PORT}
- name: BRANCH
value: ${BRANCH}
resources:
limits:
cpu: 100m
memory: 100Mi
restartPolicy: Never