-
Notifications
You must be signed in to change notification settings - Fork 348
/
values.yaml
929 lines (905 loc) · 24.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
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
# Default values for jaeger.
# This is a YAML-formatted file.
# Jaeger values are grouped by component. Cassandra values override subchart values
provisionDataStore:
cassandra: true
elasticsearch: false
kafka: false
networkPolicy:
enabled: false
# Overrides the image tag where default is the chart appVersion.
tag: ""
nameOverride: ""
fullnameOverride: ""
allInOne:
enabled: false
replicas: 1
image: jaegertracing/all-in-one
imagePullSecrets: []
pullPolicy: IfNotPresent
extraEnv: []
extraSecretMounts:
[]
# - name: jaeger-tls
# mountPath: /tls
# subPath: ""
# secretName: jaeger-tls
# readOnly: true
# command line arguments / CLI flags
# See https://www.jaegertracing.io/docs/cli/
args: []
# samplingConfig: |-
# {
# "default_strategy": {
# "type": "probabilistic",
# "param": 1
# }
# }
service:
headless: true
collector:
otlp:
grpc:
name: otlp-grpc
http:
name: otlp-http
ingress:
enabled: false
# For Kubernetes >= 1.18 you should specify the ingress-controller via the field ingressClassName
# See https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/#specifying-the-class-of-an-ingress
# ingressClassName: nginx
annotations: {}
labels: {}
# Used to create an Ingress record.
# hosts:
# - chart-example.local
# annotations:
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
# labels:
# app: jaeger
# tls:
# # Secrets must be manually created in the namespace.
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
pathType:
# resources:
# limits:
# cpu: 500m
# memory: 512Mi
# requests:
# cpu: 256m
# memory: 128Mi
nodeSelector: {}
storage:
# allowed values (cassandra, elasticsearch)
type: cassandra
cassandra:
host: cassandra
port: 9042
# Change this value to false if you want to avoid starting the
# -cassandra-schema Job
schemaJobEnabled: true
tls:
enabled: false
secretName: cassandra-tls-secret
user: user
usePassword: true
password: password
keyspace: jaeger_v1_test
## Use existing secret (ignores previous password)
# existingSecret:
## Cassandra related env vars to be configured on the concerned components
extraEnv:
[]
# - name: CASSANDRA_SERVERS
# value: cassandra
# - name: CASSANDRA_PORT
# value: "9042"
# - name: CASSANDRA_KEYSPACE
# value: jaeger_v1_test
# - name: CASSANDRA_TLS_ENABLED
# value: "false"
## Cassandra related cmd line opts to be configured on the concerned components
cmdlineParams:
{}
# cassandra.servers: cassandra
# cassandra.port: 9042
# cassandra.keyspace: jaeger_v1_test
# cassandra.tls.enabled: "false"
elasticsearch:
scheme: http
host: elasticsearch-master
port: 9200
anonymous: false
user: elastic
usePassword: true
password: changeme
# indexPrefix: test
## Use existing secret (ignores previous password)
# existingSecret:
# existingSecretKey:
nodesWanOnly: false
extraEnv: []
## ES related env vars to be configured on the concerned components
# - name: ES_SERVER_URLS
# value: http://elasticsearch-master:9200
# - name: ES_USERNAME
# value: elastic
# - name: ES_INDEX_PREFIX
# value: test
## ES related cmd line opts to be configured on the concerned components
cmdlineParams:
{}
# es.server-urls: http://elasticsearch-master:9200
# es.username: elastic
# es.index-prefix: test
tls:
enabled: false
secretName: es-tls-secret
# The mount properties of the secret
mountPath: /es-tls/ca-cert.pem
subPath: ca-cert.pem
# How ES_TLS_CA variable will be set in the various components
ca: /es-tls/ca-cert.pem
kafka:
brokers:
- kafka:9092
topic: jaeger_v1_test
authentication: none
extraEnv: []
grpcPlugin:
extraEnv: []
# Begin: Override values on the Cassandra subchart to customize for Jaeger
cassandra:
persistence:
# To enable persistence, please see the documentation for the Cassandra chart
enabled: false
config:
cluster_name: jaeger
seed_size: 1
dc_name: dc1
rack_name: rack1
endpoint_snitch: GossipingPropertyFileSnitch
# End: Override values on the Cassandra subchart to customize for Jaeger
# Begin: Override values on the Kafka subchart to customize for Jaeger
kafka:
replicaCount: 1
autoCreateTopicsEnable: true
zookeeper:
replicaCount: 1
serviceAccount:
create: true
# End: Override values on the Kafka subchart to customize for Jaeger
# Begin: Default values for the various components of Jaeger
# This chart has been based on the Kubernetes integration found in the following repo:
# https://github.com/jaegertracing/jaeger-kubernetes/blob/main/production/jaeger-production-template.yml
#
# This is the jaeger-cassandra-schema Job which sets up the Cassandra schema for
# use by Jaeger
schema:
annotations: {}
image: jaegertracing/jaeger-cassandra-schema
imagePullSecrets: []
pullPolicy: IfNotPresent
resources:
{}
# limits:
# cpu: 500m
# memory: 512Mi
# requests:
# cpu: 256m
# memory: 128Mi
serviceAccount:
create: true
# Explicitly mounts the API credentials for the Service Account
automountServiceAccountToken: true
name:
podAnnotations: {}
podLabels: {}
securityContext: {}
podSecurityContext: {}
## Deadline for cassandra schema creation job
activeDeadlineSeconds: 300
extraEnv:
[]
# - name: MODE
# value: prod
# - name: TRACE_TTL
# value: "172800"
# - name: DEPENDENCIES_TTL
# value: "0"
# For configurable values of the elasticsearch if provisioned, please see:
# https://github.com/elastic/helm-charts/tree/master/elasticsearch#configuration
elasticsearch: {}
ingester:
enabled: false
podSecurityContext: {}
securityContext: {}
annotations: {}
image: jaegertracing/jaeger-ingester
imagePullSecrets: []
pullPolicy: IfNotPresent
dnsPolicy: ClusterFirst
cmdlineParams: {}
replicaCount: 1
autoscaling:
enabled: false
minReplicas: 2
maxReplicas: 10
behavior: {}
# targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80
service:
annotations: {}
# List of IP ranges that are allowed to access the load balancer (if supported)
loadBalancerSourceRanges: []
type: ClusterIP
resources:
{}
# limits:
# cpu: 1
# memory: 1Gi
# requests:
# cpu: 500m
# memory: 512Mi
serviceAccount:
create: true
# Explicitly mounts the API credentials for the Service Account
automountServiceAccountToken: false
name:
nodeSelector: {}
tolerations: []
affinity: {}
podAnnotations: {}
## Additional pod labels
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
podLabels: {}
extraSecretMounts: []
extraConfigmapMounts: []
extraEnv: []
envFrom: []
serviceMonitor:
enabled: false
additionalLabels: {}
# https://github.com/prometheus-operator/prometheus-operator/blob/master/Documentation/api.md#relabelconfig
relabelings: []
# -- ServiceMonitor metric relabel configs to apply to samples before ingestion
# https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#endpoint
metricRelabelings: []
agent:
podSecurityContext: {}
securityContext: {}
enabled: true
annotations: {}
image: jaegertracing/jaeger-agent
# tag: 1.22
imagePullSecrets: []
pullPolicy: IfNotPresent
cmdlineParams: {}
extraEnv: []
daemonset:
useHostPort: false
updateStrategy:
{}
# type: RollingUpdate
# rollingUpdate:
# maxUnavailable: 1
service:
annotations: {}
# List of IP ranges that are allowed to access the load balancer (if supported)
loadBalancerSourceRanges: []
type: ClusterIP
# zipkinThriftPort :accept zipkin.thrift over compact thrift protocol
zipkinThriftPort: 5775
# compactPort: accept jaeger.thrift over compact thrift protocol
compactPort: 6831
# binaryPort: accept jaeger.thrift over binary thrift protocol
binaryPort: 6832
# samplingPort: (HTTP) serve configs, sampling strategies
samplingPort: 5778
resources:
{}
# limits:
# cpu: 500m
# memory: 512Mi
# requests:
# cpu: 256m
# memory: 128Mi
serviceAccount:
create: true
# Explicitly mounts the API credentials for the Service Account
automountServiceAccountToken: false
name:
annotations: {}
nodeSelector: {}
tolerations: []
affinity: {}
podAnnotations: {}
## Additional pod labels
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
podLabels: {}
extraSecretMounts: []
# - name: jaeger-tls
# mountPath: /tls
# subPath: ""
# secretName: jaeger-tls
# readOnly: true
extraConfigmapMounts: []
# - name: jaeger-config
# mountPath: /config
# subPath: ""
# configMap: jaeger-config
# readOnly: true
envFrom: []
useHostNetwork: false
dnsPolicy: ClusterFirst
priorityClassName: ""
initContainers: []
serviceMonitor:
enabled: false
additionalLabels: {}
# https://github.com/prometheus-operator/prometheus-operator/blob/master/Documentation/api.md#relabelconfig
relabelings: []
# -- ServiceMonitor metric relabel configs to apply to samples before ingestion
# https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#endpoint
metricRelabelings: []
collector:
podSecurityContext: {}
securityContext: {}
enabled: true
annotations: {}
image: jaegertracing/jaeger-collector
# tag: 1.22
imagePullSecrets: []
pullPolicy: IfNotPresent
dnsPolicy: ClusterFirst
extraEnv: []
envFrom: []
cmdlineParams: {}
basePath: /
replicaCount: 1
autoscaling:
enabled: false
minReplicas: 2
maxReplicas: 10
behavior: {}
# targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80
service:
annotations: {}
# The IP to be used by the load balancer (if supported)
loadBalancerIP: ""
# List of IP ranges that are allowed to access the load balancer (if supported)
loadBalancerSourceRanges: []
type: ClusterIP
# Cluster IP address to assign to service. Set to None to make service headless
clusterIP: ""
grpc:
port: 14250
# nodePort:
# httpPort: can accept spans directly from clients in jaeger.thrift format
http:
port: 14268
# nodePort:
# can accept Zipkin spans in JSON or Thrift
zipkin:
{}
# port: 9411
# nodePort:
otlp:
grpc:
{}
# name: otlp-grpc
# port: 4317
# nodePort:
http:
{}
# name: otlp-http
# port: 4318
# nodePort:
ingress:
enabled: false
# For Kubernetes >= 1.18 you should specify the ingress-controller via the field ingressClassName
# See https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/#specifying-the-class-of-an-ingress
# ingressClassName: nginx
annotations: {}
labels: {}
# Used to create an Ingress record.
# The 'hosts' variable accepts two formats:
# hosts:
# - chart-example.local
# or:
# hosts:
# - host: chart-example.local
# servicePort: grpc
# annotations:
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
# labels:
# app: jaeger-collector
# tls:
# Secrets must be manually created in the namespace.
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
pathType:
resources:
{}
# limits:
# cpu: 1
# memory: 1Gi
# requests:
# cpu: 500m
# memory: 512Mi
serviceAccount:
create: true
# Explicitly mounts the API credentials for the Service Account
automountServiceAccountToken: false
name:
annotations: {}
nodeSelector: {}
tolerations: []
affinity: {}
podAnnotations: {}
## Additional pod labels
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
podLabels: {}
extraSecretMounts: []
# - name: jaeger-tls
# mountPath: /tls
# subPath: ""
# secretName: jaeger-tls
# readOnly: true
extraConfigmapMounts: []
# - name: jaeger-config
# mountPath: /config
# subPath: ""
# configMap: jaeger-config
# readOnly: true
# samplingConfig: |-
# {
# "service_strategies": [
# {
# "service": "foo",
# "type": "probabilistic",
# "param": 0.8,
# "operation_strategies": [
# {
# "operation": "op1",
# "type": "probabilistic",
# "param": 0.2
# },
# {
# "operation": "op2",
# "type": "probabilistic",
# "param": 0.4
# }
# ]
# },
# {
# "service": "bar",
# "type": "ratelimiting",
# "param": 5
# }
# ],
# "default_strategy": {
# "type": "probabilistic",
# "param": 1
# }
# }
priorityClassName: ""
serviceMonitor:
enabled: false
additionalLabels: {}
# https://github.com/prometheus-operator/prometheus-operator/blob/master/Documentation/api.md#relabelconfig
relabelings: []
# -- ServiceMonitor metric relabel configs to apply to samples before ingestion
# https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#endpoint
metricRelabelings: []
initContainers: []
networkPolicy:
enabled: false
# ingressRules:
# namespaceSelector: {}
# podSelector: {}
# customRules: []
# egressRules:
# namespaceSelector: {}
# podSelector: {}
# customRules: []
query:
enabled: true
basePath: /
oAuthSidecar:
enabled: false
resources:
{}
# limits:
# cpu: 500m
# memory: 512Mi
# requests:
# cpu: 256m
# memory: 128Mi
image: quay.io/oauth2-proxy/oauth2-proxy:v7.1.0
pullPolicy: IfNotPresent
containerPort: 4180
args: []
extraEnv: []
extraConfigmapMounts: []
extraSecretMounts: []
# config: |-
# provider = "oidc"
# https_address = ":4180"
# upstreams = ["http://localhost:16686"]
# redirect_url = "https://jaeger-svc-domain/oauth2/callback"
# client_id = "jaeger-query"
# oidc_issuer_url = "https://keycloak-svc-domain/auth/realms/Default"
# cookie_secure = "true"
# email_domains = "*"
# oidc_groups_claim = "groups"
# user_id_claim = "preferred_username"
# skip_provider_button = "true"
podSecurityContext: {}
securityContext: {}
agentSidecar:
enabled: true
# resources:
# limits:
# cpu: 500m
# memory: 512Mi
# requests:
# cpu: 256m
# memory: 128Mi
annotations: {}
image: jaegertracing/jaeger-query
# tag: 1.22
imagePullSecrets: []
pullPolicy: IfNotPresent
dnsPolicy: ClusterFirst
cmdlineParams: {}
extraEnv: []
envFrom: []
replicaCount: 1
service:
annotations: {}
type: ClusterIP
# List of IP ranges that are allowed to access the load balancer (if supported)
loadBalancerSourceRanges: []
port: 80
# Specify a custom target port (e.g. port of auth proxy)
# targetPort: 8080
# Specify a specific node port when type is NodePort
# nodePort: 32500
ingress:
enabled: false
# For Kubernetes >= 1.18 you should specify the ingress-controller via the field ingressClassName
# See https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/#specifying-the-class-of-an-ingress
# ingressClassName: nginx
annotations: {}
labels: {}
# Used to create an Ingress record.
# hosts:
# - chart-example.local
# annotations:
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
# labels:
# app: jaeger-query
# tls:
# Secrets must be manually created in the namespace.
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
pathType:
health:
exposed: false
resources:
{}
# limits:
# cpu: 500m
# memory: 512Mi
# requests:
# cpu: 256m
# memory: 128Mi
serviceAccount:
create: true
# Explicitly mounts the API credentials for the Service Account
automountServiceAccountToken: false
name:
annotations: {}
nodeSelector: {}
tolerations: []
affinity: {}
podAnnotations: {}
## Additional pod labels
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
podLabels: {}
extraConfigmapMounts: []
# - name: jaeger-config
# mountPath: /config
# subPath: ""
# configMap: jaeger-config
# readOnly: true
extraVolumes: []
sidecars: []
## - name: your-image-name
## image: your-image
## ports:
## - name: portname
## containerPort: 1234
priorityClassName: ""
serviceMonitor:
enabled: false
additionalLabels: {}
# https://github.com/prometheus-operator/prometheus-operator/blob/master/Documentation/api.md#relabelconfig
relabelings: []
# -- ServiceMonitor metric relabel configs to apply to samples before ingestion
# https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#endpoint
metricRelabelings: []
# config: |-
# {
# "dependencies": {
# "dagMaxNumServices": 200,
# "menuEnabled": true
# },
# "archiveEnabled": true,
# "tracking": {
# "gaID": "UA-000000-2",
# "trackErrors": true
# }
# }
networkPolicy:
enabled: false
# ingressRules:
# namespaceSelector: {}
# podSelector: {}
# customRules: []
# egressRules:
# namespaceSelector: {}
# podSelector: {}
# customRules: []
spark:
enabled: false
annotations: {}
image: jaegertracing/spark-dependencies
imagePullSecrets: []
tag: latest
pullPolicy: IfNotPresent
cmdlineParams: {}
extraEnv: []
schedule: "49 23 * * *"
successfulJobsHistoryLimit: 5
failedJobsHistoryLimit: 5
concurrencyPolicy: Forbid
resources:
{}
# limits:
# cpu: 500m
# memory: 512Mi
# requests:
# cpu: 256m
# memory: 128Mi
serviceAccount:
create: true
# Explicitly mounts the API credentials for the Service Account
automountServiceAccountToken: false
name:
nodeSelector: {}
tolerations: []
affinity: {}
extraSecretMounts: []
extraConfigmapMounts: []
podAnnotations: {}
## Additional pod labels
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
podLabels: {}
# ttlSecondsAfterFinished: 120
esIndexCleaner:
enabled: false
securityContext:
runAsUser: 1000
podSecurityContext:
runAsUser: 1000
annotations: {}
image: jaegertracing/jaeger-es-index-cleaner
imagePullSecrets: []
pullPolicy: IfNotPresent
cmdlineParams: {}
extraEnv:
[]
# - name: ROLLOVER
# value: 'true'
schedule: "55 23 * * *"
successfulJobsHistoryLimit: 3
failedJobsHistoryLimit: 3
concurrencyPolicy: Forbid
resources:
{}
# limits:
# cpu: 500m
# memory: 512Mi
# requests:
# cpu: 256m
# memory: 128Mi
numberOfDays: 7
serviceAccount:
create: true
# Explicitly mounts the API credentials for the Service Account
automountServiceAccountToken: false
name:
nodeSelector: {}
tolerations: []
affinity: {}
extraSecretMounts: []
extraConfigmapMounts: []
podAnnotations: {}
## Additional pod labels
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
podLabels: {}
# ttlSecondsAfterFinished: 120
esRollover:
enabled: false
securityContext: {}
podSecurityContext:
runAsUser: 1000
annotations: {}
image: jaegertracing/jaeger-es-rollover
imagePullSecrets: []
tag: latest
pullPolicy: IfNotPresent
cmdlineParams: {}
extraEnv:
- name: CONDITIONS
value: '{"max_age": "1d"}'
schedule: "10 0 * * *"
successfulJobsHistoryLimit: 3
failedJobsHistoryLimit: 3
concurrencyPolicy: Forbid
resources:
{}
# limits:
# cpu: 500m
# memory: 512Mi
# requests:
# cpu: 256m
# memory: 128Mi
serviceAccount:
create: true
# Explicitly mounts the API credentials for the Service Account
automountServiceAccountToken: false
name:
nodeSelector: {}
tolerations: []
affinity: {}
extraSecretMounts: []
extraConfigmapMounts: []
podAnnotations: {}
## Additional pod labels
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
podLabels: {}
# ttlSecondsAfterFinished: 120
initHook:
extraEnv:
[]
# - name: SHARDS
# value: "3"
annotations: {}
podAnnotations: {}
podLabels: {}
ttlSecondsAfterFinished: 120
esLookback:
enabled: false
securityContext: {}
podSecurityContext:
runAsUser: 1000
annotations: {}
image: jaegertracing/jaeger-es-rollover
imagePullSecrets: []
tag: latest
pullPolicy: IfNotPresent
cmdlineParams: {}
extraEnv:
- name: UNIT
value: days
- name: UNIT_COUNT
value: "7"
schedule: "5 0 * * *"
successfulJobsHistoryLimit: 3
failedJobsHistoryLimit: 3
concurrencyPolicy: Forbid
resources:
{}
# limits:
# cpu: 500m
# memory: 512Mi
# requests:
# cpu: 256m
# memory: 128Mi
serviceAccount:
create: true
# Explicitly mounts the API credentials for the Service Account
automountServiceAccountToken: false
name:
nodeSelector: {}
tolerations: []
affinity: {}
extraSecretMounts: []
extraConfigmapMounts: []
podAnnotations: {}
## Additional pod labels
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
podLabels: {}
# ttlSecondsAfterFinished: 120
# End: Default values for the various components of Jaeger
hotrod:
enabled: false
podSecurityContext: {}
securityContext: {}
replicaCount: 1
# set the primary command(s) for the hotrod application
args:
- all
# add extra arguments to the hotrod application to customize tracing
extraArgs: []
# - --otel-exporter=otlp
# - --jaeger-ui=http://jaeger.chart.local
# add extra environment variables to the hotrod application
extraEnv: []
# - name: OTEL_EXPORTER_OTLP_ENDPOINT
# value: http://my-otel-collector.chart.local:4318
image:
repository: jaegertracing/example-hotrod
pullPolicy: IfNotPresent
pullSecrets: []
service:
annotations: {}
name: hotrod
type: ClusterIP
# List of IP ranges that are allowed to access the load balancer (if supported)
loadBalancerSourceRanges: []
port: 80
ingress:
enabled: false
# For Kubernetes >= 1.18 you should specify the ingress-controller via the field ingressClassName
# See https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/#specifying-the-class-of-an-ingress
# ingressClassName: nginx
# Used to create Ingress record (should be used with service.type: ClusterIP).
hosts:
- chart-example.local
annotations:
{}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
tls:
# Secrets must be manually created in the namespace.
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
pathType:
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
serviceAccount:
create: true
# Explicitly mounts the API credentials for the Service Account
automountServiceAccountToken: false
name:
nodeSelector: {}
tolerations: []
affinity: {}
tracing:
host: null
port: 6831
# Array with extra yaml objects to install alongside the chart. Values are evaluated as a template.
extraObjects: []