-
Notifications
You must be signed in to change notification settings - Fork 6
/
fh-sync-server-DEVELOPMENT.yaml
331 lines (324 loc) · 8.23 KB
/
fh-sync-server-DEVELOPMENT.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
apiVersion: v1
kind: Template
metadata:
name: fh-sync-server
annotations:
openshift.io/display-name: FeedHenry Sync (Persistent)
description: FeedHenry Sync Server
iconClass: icon-nodejs
tags: instant-app,sync,mobile-service
template.openshift.io/long-description: Data Synchronisation by FeedHenry.
template.openshift.io/provider-display-name: FeedHenry
template.openshift.io/documentation-url: https://github.com/feedhenry/fh-sync-server
template.openshift.io/support-url: https://github.com/feedhenry/fh-sync-server/issues
labels:
template: fh-sync-server
parameters:
- name: MONGODB_ADMIN_PASSWORD
description: Password for the MongoDB admin user. This value will be generated if not specified.
generate: expression
from: "[a-zA-Z0-9]{40}"
- name: MONGODB_USER_NAME
description: Username for the created MongoDB user.
value: "sync-user"
- name: MONGODB_USER_PASSWORD
description: Password for the created MongoDB user. This value will be generated if not specified.
generate: expression
from: "[a-zA-Z0-9]{40}"
objects:
- apiVersion: v1
kind: Service
metadata:
name: fh-sync-server
annotations:
org.feedhenry.mcp/prometheus: "plain"
labels:
app: fh-sync-server
template: fh-sync-server
spec:
ports:
- name: fh-sync-server
port: 3000
protocol: TCP
targetPort: 3000
selector:
run: fh-sync-server
sessionAffinity: None
type: ClusterIP
- apiVersion: v1
kind: Service
metadata:
annotations:
template.openshift.io/expose-name: "fh-sync-server"
template.openshift.io/expose-type: "fh-sync-server"
labels:
app: fh-sync-server
template: fh-sync-server
name: mongodb
spec:
ports:
- name: mongo
port: 27017
protocol: TCP
targetPort: 27017
selector:
name: mongodb
sessionAffinity: None
type: ClusterIP
- apiVersion: v1
kind: Service
metadata:
name: redis
labels:
app: fh-sync-server
template: fh-sync-server
spec:
ports:
- port: 6379
protocol: TCP
targetPort: 6379
selector:
run: redis
sessionAffinity: None
type: ClusterIP
- apiVersion: apps/v1beta1
kind: Deployment
metadata:
labels:
app: fh-sync-server
template: fh-sync-server
name: fh-sync-server
spec:
replicas: 1
selector:
matchLabels:
run: fh-sync-server
strategy:
activeDeadlineSeconds: 21600
rollingParams:
intervalSeconds: 1
maxSurge: 25%
maxUnavailable: 25%
timeoutSeconds: 600
updatePeriodSeconds: 1
type: RollingUpdate
template:
metadata:
labels:
run: fh-sync-server
spec:
containers:
- name: fh-sync-server
env:
- name: MONGODB_USER
valueFrom:
secretKeyRef:
key: database-user
name: mongodb
- name: MONGODB_PASSWORD
valueFrom:
secretKeyRef:
key: database-password
name: mongodb
image: feedhenry/fh-sync-server
imagePullPolicy: Always
ports:
- containerPort: 3000
protocol: TCP
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
dnsPolicy: ClusterFirst
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
terminationGracePeriodSeconds: 30
test: false
triggers:
- type: ConfigChange
- apiVersion: apps/v1beta1
kind: Deployment
metadata:
labels:
app: fh-sync-server
template: fh-sync-server
name: mongodb
spec:
replicas: 1
selector:
matchLabels:
name: mongodb
strategy:
activeDeadlineSeconds: 21600
recreateParams:
timeoutSeconds: 600
type: Recreate
template:
metadata:
labels:
name: mongodb
spec:
containers:
- name: mongodb
env:
- name: MONGODB_USER
valueFrom:
secretKeyRef:
key: database-user
name: mongodb
- name: MONGODB_PASSWORD
valueFrom:
secretKeyRef:
key: database-password
name: mongodb
- name: MONGODB_ADMIN_PASSWORD
valueFrom:
secretKeyRef:
key: database-admin-password
name: mongodb
- name: MONGODB_DATABASE
value: sync
image: centos/mongodb-32-centos7@sha256:aa37993c3be2d4731db79c0c7aba11db3e9352b1adc586c7e9054f57808789c0
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 3
initialDelaySeconds: 30
periodSeconds: 10
successThreshold: 1
tcpSocket:
port: 27017
timeoutSeconds: 1
ports:
- containerPort: 27017
protocol: TCP
readinessProbe:
exec:
command:
- /bin/sh
- -i
- -c
- mongo 127.0.0.1:27017/$MONGODB_DATABASE -u $MONGODB_USER -p $MONGODB_PASSWORD
--eval="quit()"
failureThreshold: 3
initialDelaySeconds: 3
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
resources:
limits:
memory: 512Mi
securityContext:
capabilities: {}
privileged: false
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /var/lib/mongodb/data
name: mongodb-data
dnsPolicy: ClusterFirst
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
terminationGracePeriodSeconds: 30
volumes:
- name: mongodb-data
persistentVolumeClaim:
claimName: mongodb
test: false
triggers:
- imageChangeParams:
automatic: true
containerNames:
- mongodb
from:
kind: ImageStreamTag
name: mongodb:3.2
namespace: openshift
type: ImageChange
- type: ConfigChange
- apiVersion: apps/v1beta1
kind: Deployment
metadata:
labels:
app: fh-sync-server
template: fh-sync-server
run: redis
name: redis
spec:
replicas: 1
selector:
matchLabels:
run: redis
strategy:
activeDeadlineSeconds: 21600
rollingParams:
intervalSeconds: 1
maxSurge: 25%
maxUnavailable: 25%
timeoutSeconds: 600
updatePeriodSeconds: 1
type: RollingUpdate
template:
metadata:
labels:
run: redis
spec:
containers:
- name: redis
image: rhmap/redis:2.18.22
imagePullPolicy: Always
ports:
- containerPort: 6379
protocol: TCP
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
dnsPolicy: ClusterFirst
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
terminationGracePeriodSeconds: 30
test: false
triggers:
- type: ConfigChange
- apiVersion: v1
kind: Route
metadata:
annotations:
template.openshift.io/expose-uri: "https://{.spec.host}{.spec.path}"
name: fh-sync-server
labels:
app: fh-sync-server
template: fh-sync-server
spec:
port:
targetPort: fh-sync-server
tls:
termination: edge
to:
kind: Service
name: fh-sync-server
wildcardPolicy: None
- apiVersion: v1
kind: Secret
stringData:
database-admin-password: ${MONGODB_ADMIN_PASSWORD}
database-password: ${MONGODB_USER_PASSWORD}
database-user: ${MONGODB_USER_NAME}
metadata:
labels:
app: fh-sync-server
template: fh-sync-server
name: mongodb
type: Opaque
- apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: mongodb
labels:
app: fh-sync-server
template: fh-sync-server
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi