This repository has been archived by the owner on Nov 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathonlyoffice-documentserver.alt.yaml
295 lines (295 loc) · 8.76 KB
/
onlyoffice-documentserver.alt.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
apiVersion: v1
kind: Template
metadata:
name: documentserver
parameters:
- name: DOCUMENTSERVER_VERSION
description: Version of the docker image to be deployed
value: '6.3.1.32'
- name: POSTGRESQL_SERVER_HOST
description: Name of the PostgreSQL service
value: postgresql.onlyoffice.svc
- name: POSTGRESQL_SECRET
description: Name of the secret with the PostgreSQL credentials
value: postgresql
- name: RABBITMQ_SERVICE
description: Name of the RabbitMQ service
value: rabbitmq.onlyoffice.svc
- name: REDIS_SERVICE
description: Name of the Redis service
value: redis.onlyoffice.svc
- name: DOCUMENTSERVER_DATA_SERVICE
description: Name of the OnlyOffice DocumentServer data service (deployed with this template)
value: documentserver-data.onlyoffice.svc
- name: PVC_SIZE
description: Size of the persistent data for OnlyOffice
value: 2Gi
objects:
- apiVersion: image.openshift.io/v1
kind: ImageStream
metadata:
labels:
app: documentserver
name: documentserver
spec:
lookupPolicy:
local: false
tags:
- from:
kind: DockerImage
name: 'onlyoffice/documentserver:${DOCUMENTSERVER_VERSION}'
importPolicy: {}
name: '${DOCUMENTSERVER_VERSION}'
referencePolicy:
type: Source
- apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: onlyoffice-data
spec:
accessModes:
- ReadWriteMany
resources:
requests:
storage: ${PVC_SIZE}
storageClassName: glusterfs-storage
- apiVersion: apps.openshift.io/v1
kind: DeploymentConfig
metadata:
labels:
app: documentserver-data
name: documentserver-data
spec:
replicas: 1
selector:
app: documentserver-data
deploymentconfig: documentserver-data
strategy:
activeDeadlineSeconds: 21600
resources: {}
rollingParams:
intervalSeconds: 1
maxSurge: 25%
maxUnavailable: 25%
timeoutSeconds: 600
updatePeriodSeconds: 1
type: Rolling
template:
metadata:
labels:
app: documentserver-data
deploymentconfig: documentserver-data
spec:
containers:
- env:
- name: ONLYOFFICE_DATA_CONTAINER
value: 'true'
- name: DB_HOST
value: ${POSTGRESQL_SERVER_HOST}
- name: DB_PORT
value: '5432'
- name: DB_NAME
valueFrom:
secretKeyRef:
key: database-name
name: ${POSTGRESQL_SECRET}
- name: DB_USER
valueFrom:
secretKeyRef:
key: database-user
name: ${POSTGRESQL_SECRET}
- name: DB_PWD
valueFrom:
secretKeyRef:
key: database-password
name: ${POSTGRESQL_SECRET}
- name: AMQP_URI
value: 'amqp://guest:guest@${RABBITMQ_SERVICE}'
- name: REDIS_SERVER_HOST
value: ${REDIS_SERVICE}
- name: REDIS_SERVER_PORT
value: '6379'
image: documentserver:${DOCUMENTSERVER_VERSION}
imagePullPolicy: IfNotPresent
name: documentserver-data
ports:
- containerPort: 80
protocol: TCP
- containerPort: 443
protocol: TCP
resources: {}
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /usr/share/fonts/truetype/custom
name: documentserver-1
- mountPath: /var/lib/onlyoffice
name: documentserver-2
- mountPath: /var/lib/postgresql
name: documentserver-3
- mountPath: /var/log/onlyoffice
name: documentserver-4
- mountPath: /var/www/onlyoffice/Data
name: onlyoffice-data
subPath: data
dnsPolicy: ClusterFirst
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
serviceAccountName: root-allowed
terminationGracePeriodSeconds: 30
volumes:
- emptyDir: {}
name: documentserver-1
- emptyDir: {}
name: documentserver-2
- emptyDir: {}
name: documentserver-3
- emptyDir: {}
name: documentserver-4
- name: onlyoffice-data
persistentVolumeClaim:
claimName: onlyoffice-data
test: false
triggers:
- type: ConfigChange
- imageChangeParams:
automatic: true
containerNames:
- documentserver-data
from:
kind: ImageStreamTag
name: 'documentserver:${DOCUMENTSERVER_VERSION}'
type: ImageChange
- apiVersion: apps.openshift.io/v1
kind: DeploymentConfig
metadata:
labels:
app: documentserver
name: documentserver
spec:
replicas: 1
selector:
app: documentserver
deploymentconfig: documentserver
strategy:
activeDeadlineSeconds: 21600
resources: {}
rollingParams:
intervalSeconds: 1
maxSurge: 25%
maxUnavailable: 25%
timeoutSeconds: 600
updatePeriodSeconds: 1
type: Rolling
template:
metadata:
creationTimestamp: null
labels:
app: documentserver
deploymentconfig: documentserver
spec:
containers:
- env:
- name: ONLYOFFICE_DATA_CONTAINER_HOST
value: ${DOCUMENTSERVER_DATA_SERVICE}
- name: DB_HOST
value: ${POSTGRESQL_SERVER_HOST}
- name: DB_PORT
value: '5432'
- name: DB_NAME
valueFrom:
secretKeyRef:
key: database-name
name: ${POSTGRESQL_SECRET}
- name: DB_USER
valueFrom:
secretKeyRef:
key: database-user
name: ${POSTGRESQL_SECRET}
- name: DB_PWD
valueFrom:
secretKeyRef:
key: database-password
name: ${POSTGRESQL_SECRET}
- name: AMQP_URI
value: 'amqp://guest:guest@${RABBITMQ_SERVICE}'
- name: REDIS_SERVER_HOST
value: ${REDIS_SERVICE}
- name: REDIS_SERVER_PORT
value: '6379'
image: documentserver:${DOCUMENTSERVER_VERSION}
imagePullPolicy: IfNotPresent
name: documentserver
ports:
- containerPort: 80
protocol: TCP
- containerPort: 443
protocol: TCP
resources: {}
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /usr/share/fonts/truetype/custom
name: documentserver-1
- mountPath: /var/lib/onlyoffice
name: documentserver-2
- mountPath: /var/lib/postgresql
name: documentserver-3
- mountPath: /var/log/onlyoffice
name: documentserver-4
- mountPath: /var/www/onlyoffice/Data
name: onlyoffice-data
subPath: data
dnsPolicy: ClusterFirst
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
serviceAccountName: root-allowed
terminationGracePeriodSeconds: 30
volumes:
- emptyDir: {}
name: documentserver-1
- emptyDir: {}
name: documentserver-2
- emptyDir: {}
name: documentserver-3
- emptyDir: {}
name: documentserver-4
- name: onlyoffice-data
persistentVolumeClaim:
claimName: onlyoffice-data
test: false
triggers:
- type: ConfigChange
- imageChangeParams:
automatic: true
containerNames:
- documentserver-data
- documentserver
from:
kind: ImageStreamTag
name: 'documentserver:${DOCUMENTSERVER_VERSION}'
type: ImageChange
- apiVersion: v1
kind: Service
metadata:
labels:
app: documentserver-data
name: documentserver-data
spec:
ports:
- name: 80-tcp
port: 80
protocol: TCP
targetPort: 80
- name: 443-tcp
port: 443
protocol: TCP
targetPort: 443
selector:
deploymentconfig: documentserver-data
sessionAffinity: None
type: ClusterIP
status:
loadBalancer: {}