-
Notifications
You must be signed in to change notification settings - Fork 35
/
values.yaml
564 lines (502 loc) · 12 KB
/
values.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
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
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
##
## Custom Ingress settings. Overrides default Nginx Ingress configuration.
##
customIngress:
enabled: false
annotations: {}
ingressClassName: nginx
host: moon.aerokube.local
tls: []
#- secretName: moon-tls
# hosts:
# - moon.aerokube.local
paths:
- path: /wd/hub
port: 4444
- path: /cypress
port: 4444
- path: /playwright
port: 4444
- path: /devtools
port: 4444
- path: /metrics
port: 4444
- path: /api
port: 9090
- path: /ui
port: 9090
- path: /
port: 8080
##
## Ingress settings. This chart is using Nginx Ingress. By default, Ingress listens only on port 80 (HTTP).
## Port 443 (HTTPS) is enabled only if TLS certificate and private key are provided in the fields below.
##
ingress:
##
## To be able to disable ingress.
##
enabled: true
##
## Ingress host. Replace this with your domain name.
##
host: moon.aerokube.local
##
## Ingress class name
##
ingressClassName: nginx
##
## Files with TLS certificate and TLS key. When provided Ingress switches to HTTPS-only mode.
## Set to empty files if you need HTTPS, but do not need to provide key and cert manually(i.g. use cert-manager)
##
tlsCert:
tlsKey:
##
## TLS Secret name. If exists will not be generated.
##
tlsSecretName:
##
## Ingress proxy timeout settings.
##
proxyConnectTimeout: 1900
proxySendTimeout: 1900
proxyReadTimeout: 1900
##
## Maximum request body size.
##
proxyBodySize: 128m
##
## Set to true in Openshift.
##
openshift:
##
## Add custom annotations to ingress
##
customAnnotations: {}
##
## Moon scc annotations.
##
sccAnnotations: {kubernetes.io/description: 'Like the restricted SCC, but with the seccompProfiles turn off'}
##
## Moon service account annotations.
##
serviceAccountAnnotations: {}
##
## Moon service annotations.
##
serviceAnnotations: {}
##
## Moon service labels.
##
serviceLabels: {}
##
## Moon service to customize without ingress.
##
service:
##
## Service type e.g. NodePort, LoadBalancer.
##
type:
##
## Load balancer IP address.
##
loadBalancerIP:
##
## List of external IP addresses.
##
externalIPs: []
##
## Moon deployment settings.
##
deployment:
##
## Custom deployment annotations.
##
annotations: {}
##
## Custom pod annotations.
##
podAnnotations: {}
##
## Total number of Moon pods. Default is 2.
##
replicas:
##
## Moon pods graceful shutdown timeout. Default is 360 seconds.
##
terminationGracePeriodSeconds:
##
## Moon pods topologySpreadConstraints.
##
topologySpreadConstraints:
##
## Moon container image repository. Default is quay.io/aerokube/moon.
##
moonRepo:
##
## Moon container image tag. Default equals to chart app version.
##
moonTag:
##
## Moon container CPU limit. Default is 0.5.
##
moonCPULimit:
##
## Moon container CPU request. Default is 0.2.
##
moonCPURequest:
##
## Moon container memory limit. Default is 256Mi.
## We recommend setting the same value for memory request and limit.
##
moonMemoryLimit:
##
## Moon container memory request. Default is 256Mi.
##
moonMemoryRequest:
##
## Moon callback url. In case of using Moon without ingress or with custom ingress as AWS alb.
##
moonCallbackURL:
##
## Moon browser limit. Use it in case you need to lower browser limit than license key allows. Default unset.
##
moonBrowserLimit:
##
## Moon-conf image repository. Default is quay.io/aerokube/moon-conf.
##
moonConfRepo:
##
## Moon-conf container image tag. Default equals to chart app version.
##
moonConfTag:
##
## Moon-conf container CPU limit. Default is 0.25.
##
moonConfCPULimit:
##
## Moon-conf container CPU request. Default is 0.05.
##
moonConfCPURequest:
##
## Moon-conf container memory limit. Default is 128Mi.
## We recommend setting the same value for memory request and limit.
##
moonConfMemoryLimit:
##
## Moon-conf container memory request. Default is 128Mi.
##
moonConfMemoryRequest:
##
## Moon-basic-auth container image repository. Default is quay.io/aerokube/moon-basic-auth.
##
moonBasicAuthRepo:
##
## Moon-basic-auth container image tag. Default equals to chart app version.
##
moonBasicAuthTag:
##
## Moon-basic-auth container CPU limit. Default is 0.5.
##
moonBasicAuthCPULimit:
##
## Moon-basic-auth container CPU request. Default is 0.2.
##
moonBasicAuthCPURequest:
##
## Moon-basic-auth container memory limit. Default is 256Mi.
## We recommend setting the same value for memory request and limit.
##
moonBasicAuthMemoryLimit:
##
## Moon-basic-auth container memory request. Default is 256Mi.
##
moonBasicAuthMemoryRequest:
##
## Moon-ui image repository. Default is quay.io/aerokube/moon-ui.
##
moonUIRepo:
##
## Moon-ui container image tag. Default equals to chart app version.
##
moonUITag:
##
## Moon-ui container CPU limit. Default is 0.25.
##
moonUICPULimit:
##
## Moon-ui container CPU request. Default is 0.05.
##
moonUICPURequest:
##
## Moon-ui container memory limit. Default is 64Mi.
## We recommend setting the same value for memory request and limit.
##
moonUIMemoryLimit:
##
## Moon-ui container memory request. Default is 64Mi.
##
moonUIMemoryRequest:
##
## Enable Moon experimental UI.
##
experimentalUI: true
## If specified, the pod's security policies.
## ref: https://kubernetes.io/docs/concepts/policy/pod-security-policy/
##
securityContext: {}
# runAsUser: 1000
##
## Security context for containers running in Moon pod.
##
containerSecurityContext: {}
# allowPrivilegeEscalation: false
# capabilities:
# drop:
# - ALL
# privileged: false
# runAsGroup: 1000
# runAsNonRoot: true
# runAsUser: 1000
# seccompProfile:
# type: RuntimeDefault
##
## Optional fields that specifies the maximum number of pods that can be created over the desired number of pods
## and that can be unavailable during the update. You can use both int and percent values.
##
rollingUpdate: {}
# maxSurge: 25%
# maxUnavailable: 25%
##
## Node Selector for Moon pods
##
nodeSelector: {}
# kubernetes.io/os: linux
## Assign custom affinity rules to the instance
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
##
affinity: {}
# nodeAffinity:
# requiredDuringSchedulingIgnoredDuringExecution:
# nodeSelectorTerms:
# - matchExpressions:
# - key: kubernetes.io/e2e-az-name
# operator: In
# values:
# - e2e-az1
# - e2e-az2
# ## If specified, the pod's priorityClassName.
# ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/pod-priority-preemption/#priorityclass
# ##
# priorityClassName: default
## If specified, the pod's tolerations.
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
#- key: "key"
# operator: "Equal"
# value: "value"
# effect: "NoSchedule"
##
## Available configuration objects.
##
configs:
##
## Default configuration object. Detailed description of the fields can be found
## in documentation: https://aerokube.com/moon/latest/#configuration-object.
##
default:
serviceAccountName: default
sessionTimeout: 5m
user:
id: 4096
name: user
group:
id: 4096
name: user
containers:
browser:
resources:
limits:
cpu: "1"
memory: 2Gi
requests:
cpu: 500m
memory: 2Gi
ca-certs:
repository: quay.io/aerokube/ca-certs
resources:
limits:
cpu: 200m
memory: 32Mi
requests:
cpu: 100m
memory: 32Mi
proxy:
repository: quay.io/aerokube/tinyproxy
version: 1.11.2
resources:
limits:
cpu: 200m
memory: 32Mi
requests:
cpu: 100m
memory: 32Mi
defender:
repository: quay.io/aerokube/defender
resources:
limits:
cpu: 250m
memory: 128Mi
requests:
cpu: 100m
memory: 128Mi
video-recorder:
repository: quay.io/aerokube/video-recorder
resources:
limits:
cpu: "1"
memory: 2Gi
requests:
cpu: 250m
memory: 2Gi
vnc-server:
repository: quay.io/aerokube/x11vnc
version: 0.9.16
resources:
limits:
cpu: 200m
memory: 128Mi
requests:
cpu: 100m
memory: 128Mi
window-manager:
repository: quay.io/aerokube/openbox
version: 3.6.1
resources:
limits:
cpu: 200m
memory: 128Mi
requests:
cpu: 100m
memory: 128Mi
x-server:
repository: quay.io/aerokube/xvfb
version: "21.1"
resources:
limits:
cpu: 200m
memory: 128Mi
requests:
cpu: 100m
memory: 128Mi
additional-fonts:
repository: quay.io/aerokube/fonts
version: 1.0.0
resources:
limits:
cpu: 200m
memory: 32Mi
requests:
cpu: 100m
memory: 32Mi
har:
repository: quay.io/aerokube/har
resources:
limits:
cpu: 200m
memory: 128Mi
requests:
cpu: 100m
memory: 128Mi
storage:
accessKey: ""
bucket: ""
endpoint: ""
filename: ""
pattern: ""
secretKey: ""
noProxy: ""
httpProxy: ""
httpsProxy: ""
##
## Available browsers set objects.
##
browsers:
##
## Default browsers set object. Detailed description of the fields can be found
## in documentation: https://aerokube.com/moon/latest/#browsers-set.
##
default:
selenium:
MicrosoftEdge:
repository: quay.io/browser/microsoft-edge-stable
default: 129.0.2792.52-6
chrome:
repository: quay.io/browser/google-chrome-stable
default: 129.0.6668.70-6
firefox:
repository: quay.io/browser/firefox-mozilla-build
default: 130.0.1-5
opera:
repository: quay.io/browser/opera-stable
default: 113.0.5230.132-7
safari:
repository: quay.io/browser/safari
default: 15.0-0
cypress:
electron:
repository: quay.io/browsers/cypress-electron
chromium:
repository: quay.io/browsers/cypress-chromium
chrome:
repository: quay.io/browsers/cypress-chrome
firefox:
repository: quay.io/browsers/cypress-firefox
edge:
repository: quay.io/browsers/cypress-edge
playwright:
chrome:
repository: quay.io/browser/playwright-chrome
chromium:
repository: quay.io/browser/playwright-chromium
firefox:
repository: quay.io/browser/playwright-firefox
webkit:
repository: quay.io/browser/playwright-webkit
devtools:
chrome:
repository: quay.io/browser/devtools-google-chrome-stable
##
## Available quotas. If you need to have multiple quota objects - simply add them below:
##
## quota:
## moon: null
## alfa-team:
## namespace: alfa
## skipCreateNamespace: true
## serviceAccountName: custom
## serviceAccountAnnotations: {}
## beta-team:
## namespace: beta
##
quota:
##
## Default quota. Detailed description of the fields can be found
## in documentation: https://aerokube.com/moon/latest/#quotas. Set it
## to null when having multiple quota objects.
##
moon:
namespace: moon
##
## License key. When empty default free license key is automatically used.
##
license:
##
## License key secret name. License data will be loaded from secret, overrides license field.
##
licenseSecretName:
##
## rbac true by default
##
rbac:
enabled: true