forked from ONLYOFFICE/Kubernetes-Docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.yaml
More file actions
367 lines (340 loc) · 7.08 KB
/
values.yaml
File metadata and controls
367 lines (340 loc) · 7.08 KB
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
product:
name: onlyoffice
connections:
dbHost: postgresql
dbUser: postgres
dbPort: "5432"
dbName: postgres
dbExistingSecret: postgresql
dbSecretKeyName: postgres-password
dbPassword: ""
redisHost: redis-master
redisPort: "6379"
amqpType: rabbitmq
amqpHost: rabbitmq
amqpPort: "5672"
amqpVhost: "/"
amqpUser: user
amqpProto: amqp
amqpExistingSecret: rabbitmq
amqpSecretKeyName: rabbitmq-password
amqpPassword: ""
persistence:
existingClaim: ""
storageClass: "nfs"
size: 8Gi
license:
existingSecret: ""
existingClaim: ""
log:
level: WARN
type: pattern
pattern: "[%d] [%p] %c - %.10000m"
wopi:
enabled: false
metrics:
enabled: false
host: statsd-exporter-prometheus-statsd-exporter
port: "8125"
prefix: ds.
example:
enabled: false
podAnnotations:
rollme: "{{ randAlphaNum 5 | quote }}"
containerImage: onlyoffice/docs-example:7.1.1-4
imagePullPolicy: IfNotPresent
dsUrl: "/"
resources:
##Example:
##requests:
## memory: "128Mi"
## cpu: "100m"
requests: {}
##limits:
## memory: "128Mi"
## cpu: "250m"
limits: {}
extraConf:
configMap: ""
filename: local.json
extraThemes:
configMap: ""
filename: custom-themes.json
antiAffinity:
type: "soft"
topologyKey: kubernetes.io/hostname
weight: "100"
nodeSelector: {}
tolerations: []
docservice:
podAnnotations:
rollme: "{{ randAlphaNum 5 | quote }}"
replicas: 2
readinessProbeEnabled: true
readinessProbe:
failureThreshold: 2
httpGet:
path: /index.html
port: 8000
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 3
livenessProbeEnabled: true
livenessProbe:
failureThreshold: 5
httpGet:
path: /index.html
port: 8000
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 3
startupProbeEnabled: true
startupProbe:
httpGet:
path: /index.html
port: 8000
failureThreshold: 30
periodSeconds: 10
containerImage: onlyoffice/docs-docservice-de:7.1.1-4
imagePullPolicy: IfNotPresent
resources:
##Example:
##requests:
## memory: "256Mi"
## cpu: "100m"
requests: {}
##limits:
## memory: "2Gi"
## cpu: "1000m"
limits: {}
autoscaling:
enabled: false
minReplicas: 2
maxReplicas: 4
targetCPU:
enabled: true
utilizationPercentage: 70
targetMemory:
enabled: false
utilizationPercentage: 70
##Example:
##customMetricsType:
## - type: Object
## object:
## metric:
## name: requests-per-second
## describedObject:
## apiVersion: networking.k8s.io/v1
## kind: Ingress
## name: main-route
## target:
## type: Value
## value: 2k
customMetricsType: []
##Example:
##behavior:
## scaleDown:
## stabilizationWindowSeconds: 300
## policies:
## - type: Pods
## value: 4
## periodSeconds: 60
## scaleUp:
## stabilizationWindowSeconds: 0
## policies:
## - type: Percent
## value: 70
## periodSeconds: 15
## selectPolicy: Max
behavior: {}
proxy:
gzipProxied: "off"
livenessProbeEnabled: true
livenessProbe:
failureThreshold: 3
httpGet:
path: /index.html
port: 8888
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 3
startupProbeEnabled: true
startupProbe:
httpGet:
path: /index.html
port: 8888
failureThreshold: 30
periodSeconds: 10
proxyContainerImage: onlyoffice/docs-proxy-de:7.1.1-4
imagePullPolicy: IfNotPresent
resources:
##Example:
##requests:
## memory: "256Mi"
## cpu: "100m"
requests: {}
##limits:
## memory: "2Gi"
## cpu: "1000m"
limits: {}
converter:
podAnnotations:
rollme: "{{ randAlphaNum 5 | quote }}"
replicas: 2
containerImage: onlyoffice/docs-converter-de:7.1.1-4
imagePullPolicy: IfNotPresent
resources:
##Example:
##requests:
## memory: "256Mi"
## cpu: "200m"
requests: {}
##limits:
## memory: "2Gi"
## cpu: "1000m"
limits: {}
autoscaling:
enabled: false
minReplicas: 2
maxReplicas: 16
targetCPU:
enabled: true
utilizationPercentage: 70
targetMemory:
enabled: false
utilizationPercentage: 70
##Example:
##customMetricsType:
## - type: Pods
## pods:
## metric:
## name: packets-per-second
## target:
## type: AverageValue
## averageValue: 1k
customMetricsType: []
##Example:
##behavior:
## scaleDown:
## stabilizationWindowSeconds: 300
## policies:
## - type: Percent
## value: 10
## periodSeconds: 60
## scaleUp:
## stabilizationWindowSeconds: 0
## policies:
## - type: Percent
## value: 10
## periodSeconds: 15
## - type: Pods
## value: 2
## periodSeconds: 15
## selectPolicy: Max
behavior: {}
jwt:
enabled: true
secret: "MYSECRET"
header: "Authorization"
inBody: false
##Example:
##inbox:
## enabled: true
## secret: "MYSECRET"
## header: "Authorization"
inbox: {}
##outbox:
## enabled: true
## secret: "MYSECRET"
## header: "Authorization"
outbox: {}
existingSecret: ""
service:
existing: ""
annotations: {}
type: ClusterIP
port: 8888
ingress:
enabled: false
annotations:
kubernetes.io/ingress.class: nginx
nginx.ingress.kubernetes.io/proxy-body-size: 100m
host: ""
ssl:
enabled: false
secret: tls
grafana_ingress:
enabled: false
securityContext:
enabled: false
converter:
runAsUser: 101
runAsGroup: 101
docservice:
runAsUser: 101
runAsGroup: 101
example:
runAsUser: 1001
runAsGroup: 1001
sqlScripts:
branchName: master
webProxy:
enabled: false
http: "http://proxy.example.com"
https: "https://proxy.example.com"
noProxy: "localhost,127.0.0.1,docservice"
privateCluster: false
install:
job:
enabled: true
image:
repository: onlyoffice/docs-utils
tag: 7.1.1-4
pullPolicy: IfNotPresent
existingConfigmap:
tblCreate:
name: init-db-scripts
keyName: createdb.sql
initdb: ""
upgrade:
job:
enabled: true
image:
repository: onlyoffice/docs-utils
tag: 7.1.1-4
pullPolicy: IfNotPresent
existingConfigmap:
tblRemove:
name: remove-db-scripts
keyName: removetbl.sql
tblCreate:
name: init-db-scripts
keyName: createdb.sql
dsStop: ""
rollback:
job:
enabled: true
image:
repository: onlyoffice/docs-utils
tag: 7.1.1-4
pullPolicy: IfNotPresent
existingConfigmap:
tblRemove:
name: remove-db-scripts
keyName: removetbl.sql
tblCreate:
name: init-db-scripts
keyName: createdb.sql
dsStop: ""
delete:
job:
enabled: true
image:
repository: onlyoffice/docs-utils
tag: 7.1.1-4
pullPolicy: IfNotPresent
existingConfigmap:
tblRemove:
name: remove-db-scripts
keyName: removetbl.sql
dsStop: ""