-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathvalues.yaml
670 lines (526 loc) · 14.3 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
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
# Default values for quickwit.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
image:
repository: quickwit/quickwit
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
# tag: v0.8.2
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
# Set the Kuberentes cluster domain if not default. It's used to build URLs for the services.
clusterDomain: cluster.local
# -- Additional labels to add to all resources
additionalLabels: {}
# app: quickwit
serviceAccount:
# Specifies whether a service account should be created
create: true
# Annotations to add to the service account
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
annotations: {}
podAnnotations: {}
podSecurityContext:
fsGroup: 1005
securityContext:
runAsNonRoot: true
runAsUser: 1005
# Additional global env
environment: {}
# KEY: VALUE
environmentFrom: []
# - secretRef:
# name: quickwit
# - configMapRef:
# name: quickwit
configMaps: []
# - name: configmap1
# mountPath: /quickwit/configmaps/
# Global tolerations applied to all deployments
tolerations: []
# Global affinity settings applied to all deployments
affinity: {}
searcher:
replicaCount: 3
# Extra env for searcher
extraEnv: {}
# KEY: VALUE
extraEnvFrom: []
# - secretRef:
# name: quickwit-searcher
# - configMapRef:
# name: quickwit-searcher
# extraVolumes -- Additional volumes to use with Pods.
extraVolumes: []
# extraVolumeMounts -- Additional volumes to mount into Quickwit containers.
extraVolumeMounts: []
resources: {}
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
## Pod distruption budget
podDisruptionBudget: {}
# maxUnavailable: 1
# minAvailable: 2
persistentVolume:
enabled: false
# storage: "1Gi"
# storageClass: ""
updateStrategy: {}
# type: RollingUpdate
startupProbe:
httpGet:
path: /health/livez
port: rest
failureThreshold: 12
periodSeconds: 5
livenessProbe:
httpGet:
path: /health/livez
port: rest
readinessProbe:
httpGet:
path: /health/readyz
port: rest
# StatefulSet allows you to relax its ordering guarantees
# - OrderedReady
# - Parallel
podManagementPolicy: OrderedReady
lifecycleHooks: {}
# preStop:
# exec:
# command:
# - /bin/sh
# - -c
# - sleep 30
# Override args for starting container
args: []
# initContainers -- Init containers to be added to the pods
initContainers: []
annotations: {}
podAnnotations: {}
serviceAnnotations: {}
# serviceType: ClusterIP
nodeSelector: {}
tolerations: []
affinity: {}
runtimeClassName: ""
indexer:
enabled: true
replicaCount: 1
# Extra env for indexer
extraEnv: {}
# KEY: VALUE
extraEnvFrom: []
# - secretRef:
# name: quickwit-indexer
# - configMapRef:
# name: quickwit-indexer
# extraVolumes -- Additional volumes to use with Pods.
extraVolumes: []
# extraVolumeMounts -- Additional volumes to mount into Quickwit containers.
extraVolumeMounts: []
resources: {}
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
## Pod distruption budget
podDisruptionBudget: {}
# maxUnavailable: 1
# minAvailable: 2
updateStrategy: {}
# type: RollingUpdate
startupProbe:
httpGet:
path: /health/livez
port: rest
failureThreshold: 12
periodSeconds: 5
livenessProbe:
httpGet:
path: /health/livez
port: rest
readinessProbe:
httpGet:
path: /health/readyz
port: rest
# StatefulSet allows you to relax its ordering guarantees
# - OrderedReady
# - Parallel
podManagementPolicy: OrderedReady
# Override args for starting container
args: []
# initContainers -- Init containers to be added to the pods
initContainers: []
annotations: {}
podAnnotations: {}
serviceAnnotations: {}
# serviceType: ClusterIP
nodeSelector: {}
tolerations: []
affinity: {}
lifecycleHooks: {}
# preStop:
# exec:
# command:
# - /bin/sh
# - -c
# - sleep 30
# Long grace period is recommended to wait for all index commit_timeout_secs and splits to be published
# See https://quickwit.io/docs/configuration/index-config#indexing-settings
terminationGracePeriodSeconds: 120
runtimeClassName: ""
persistentVolume:
enabled: false
# storage: "1Gi"
# storageClass: ""
metastore:
replicaCount: 1
# Extra env for metastore
extraEnv: {}
# KEY: VALUE
# This is the recommended way to inject `QW_METASTORE_URI` when using the postgres metastore (see https://quickwit.io/docs/configuration/metastore-config)
extraEnvFrom: []
# - secretRef:
# name: quickwit-metastore
# - configMapRef:
# name: quickwit-metastore
# extraVolumes -- Additional volumes to use with Pods.
extraVolumes: []
# extraVolumeMounts -- Additional volumes to mount into Quickwit containers.
extraVolumeMounts: []
resources: {}
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
updateStrategy: {}
# type: RollingUpdate
startupProbe:
httpGet:
path: /health/livez
port: rest
failureThreshold: 12
periodSeconds: 5
livenessProbe:
httpGet:
path: /health/livez
port: rest
readinessProbe:
httpGet:
path: /health/readyz
port: rest
# Override args for starting container
args: []
# initContainers -- Init containers to be added to the pods
initContainers: []
annotations: {}
podAnnotations: {}
serviceAnnotations: {}
# serviceType: ClusterIP
nodeSelector: {}
tolerations: []
affinity: {}
runtimeClassName: ""
control_plane:
enabled: true
# Extra env for control plane
extraEnv: {}
# KEY: VALUE
extraEnvFrom: []
# - secretRef:
# name: quickwit-control-plane
# - configMapRef:
# name: quickwit-control-plane
# extraVolumes -- Additional volumes to use with Pods.
extraVolumes: []
# extraVolumeMounts -- Additional volumes to mount into Quickwit containers.
extraVolumeMounts: []
resources: {}
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
startupProbe:
httpGet:
path: /health/livez
port: rest
failureThreshold: 12
periodSeconds: 5
livenessProbe:
httpGet:
path: /health/livez
port: rest
readinessProbe:
httpGet:
path: /health/readyz
port: rest
# Override args for starting container
args: []
# initContainers -- Init containers to be added to the pods
initContainers: []
annotations: {}
podAnnotations: {}
serviceAnnotations: {}
# serviceType: ClusterIP
nodeSelector: {}
tolerations: []
affinity: {}
runtimeClassName: ""
janitor:
# Enable Janitor service
enabled: true
# Extra env for janitor
extraEnv: {}
# KEY: VALUE
extraEnvFrom: []
# - secretRef:
# name: quickwit-janitor
# - configMapRef:
# name: quickwit-janitor
# extraVolumes -- Additional volumes to use with Pods.
extraVolumes: []
# extraVolumeMounts -- Additional volumes to mount into Quickwit containers.
extraVolumeMounts: []
resources: {}
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
startupProbe:
httpGet:
path: /health/livez
port: rest
failureThreshold: 12
periodSeconds: 5
livenessProbe:
httpGet:
path: /health/livez
port: rest
readinessProbe:
httpGet:
path: /health/readyz
port: rest
# Override args for starting container
args: []
# initContainers -- Init containers to be added to the pods
initContainers: []
annotations: {}
podAnnotations: {}
serviceAnnotations: {}
# serviceType: ClusterIP
nodeSelector: {}
tolerations: []
affinity: {}
runtimeClassName: ""
# Deploy jobs to bootstrap creation of indexes and sources for quickwit clusters
bootstrap:
# Enable bootstrap jobs
enabled: false
# Extra env for bootstrap jobs
extraEnv: {}
# KEY: VALUE
extraEnvFrom: []
# - secretRef:
# name: quickwit-bootstrap
# - configMapRef:
# name: quickwit-bootstrap
resources: {}
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
nodeSelector: {}
tolerations: []
affinity: {}
runtimeClassName: ""
sources:
# Override command for starting container
command: []
# initContainers -- Init containers to be executed before the source creation.
initContainers: []
# extraVolumes -- Additional volumes to use with bootstrap Pods.
extraVolumes: []
# extraVolumeMounts -- Additional volumes to mount into bootstrap containers (not the init containers).
extraVolumeMounts: []
indexes:
# initContainers -- Init containers to be executed before the index creation.
initContainers: []
# extraVolumes -- Additional volumes to use with bootstrap Pods.
extraVolumes: []
# extraVolumeMounts -- Additional volumes to mount into bootstrap containers (not the init containers).
extraVolumeMounts: []
# Quickwit configuration
# Warning: This config is writed directly into a configMap
# to avoid passing sensitive value you can pass environment variables.
# https://quickwit.io/docs/configuration/node-config#using-environment-variables-in-the-configuration
configLocation: /quickwit/node.yaml
config:
version: 0.8
listen_address: 0.0.0.0
gossip_listen_port: 7282
data_dir: /quickwit/qwdata
default_index_root_uri: s3://quickwit/indexes
# postgres:
# max_num_connections: 50
# storage:
# s3:
# endpoint: "http://custom-s3-endpoint"
# region: eu-east-1
# We recommend using IAM roles and permissions to access Amazon S3 resources,
# but you can specify a pair of access and secret keys if necessary.
# access_key_id: <my access key>
# secret_access_key: ${AWS_ACCESS_KEY_ID}
# azure:
# account: "<my account name>"
# access_key: ${QW_AZURE_STORAGE_ACCESS_KEY}
# Indexer settings
# indexer:
# split_store_max_num_bytes: 200G
# split_store_max_num_splits: 10000
# Ingest API settings
# ingest_api:
# max_queue_memory_usage: 2GiB
# max_queue_disk_usage: 4GiB
# Searcher settings
# searcher:
# fast_field_cache_capacity: 10G
# split_footer_cache_capacity: 1G
# max_num_concurrent_split_streams: 100
# Seed configuration
seed:
indexes: []
# - version: 0.8
# index_id: my-index
# doc_mapping:
# field_mappings:
# - name: timestamp
# type: datetime
# fast: true
# input_formats:
# - unix_timestamp
# output_format: unix_timestamp_secs
# - name: body
# type: text
# timestamp_field: timestamp
# search_settings:
# default_search_fields: [body]
# indexing_settings:
# merge_policy:
# type: limit_merge
# max_merge_ops: 3
# merge_factor: 10
# max_merge_factor: 12
sources: []
# - index: my-index
# source:
# version: 0.8
# source_id: my-source
# source_type: kafka
# num_pipelines: 1
# params:
# topic: quickwit-topic
# client_params:
# bootstrap.servers: kafka-server-endpoint1:9092,kafka-server-endpoint2:9092
# Prometheus metrics
serviceMonitor:
enabled: false
# -- Additional labels to add to monitoring resources
additionalLabels: {}
interval: 60s
scrapeTimeout: 10s
metricRelabelings: []
# - action: replace
# regex: quickwit-(.*)
# replacement: $1
# sourceLabels: [cluster]
# targetLabel: qw_cluster
# - action: labeldrop
# regex: (endpoint|cluster)
relabelings: []
# - sourceLabels: [__meta_kubernetes_pod_node_name]
# targetLabel: instance
# Prometheus Operator alertmanager alerts
prometheusRule:
enabled: false
# -- Additional labels to add to PrometheusRule resources
additionalLabels: {}
rules: []
# - alert: Example
# expr: metric == 1
# for: 1m
# labels:
# severity: warning
service:
# Service type configuration default for all Quickwit services
type: ClusterIP
# -- Set the ip family policy to configure dual-stack see [Configure dual-stack](https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services)
ipFamilyPolicy: ""
# -- Sets the families that should be supported and the order in which they should be applied to ClusterIP as well. Can be IPv4 and/or IPv6.
ipFamilies: []
annotations: {}
ingress:
enabled: false
className: nginx
annotations:
nginx.ingress.kubernetes.io/proxy-body-size: 10m
nginx.ingress.kubernetes.io/use-regex: "true"
hosts:
- host: "*"
paths:
# Ingest and ES bulk endpoints to quickwit-indexer
- path: /api/v1/.*/ingest
pathType: ImplementationSpecific
service: indexer
port: rest
- path: /api/v1/_elastic/bulk
pathType: ImplementationSpecific
service: indexer
port: rest
- path: /api/v1/_elastic/.*/_bulk
pathType: ImplementationSpecific
service: indexer
port: rest
# Indexes API endpoints to quickwit-metastore
- path: /api/v1/indexes
pathType: Prefix
service: metastore
port: rest
# Everything else to quickwit-searcher
- path: /
pathType: ImplementationSpecific
service: searcher
port: rest
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi