-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvalues.yaml
3170 lines (3065 loc) · 135 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
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
## @section Global parameters
## Global Docker image parameters
## Please, note that this will override the image parameters, including dependencies, configured to use the global value
## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass
##
serviceAccount:
create: false
## @param global.imageRegistry Global Docker image registry
## @param global.imagePullSecrets Global Docker registry secret names as an array
## @param global.storageClass Global StorageClass for Persistent Volume(s)
##
global:
imageRegistry: ""
## E.g.
## imagePullSecrets:
## - myRegistryKeySecretName
##
imagePullSecrets: []
storageClass: ""
## @section Common parameters
##
## @param kubeVersion Override Kubernetes version
##
kubeVersion: ""
## @param nameOverride String to partially override common.names.name
##
nameOverride: ""
## @param fullnameOverride String to fully override common.names.fullname
##
fullnameOverride: ""
## @param namespaceOverride String to fully override common.names.namespace
##
namespaceOverride: ""
## @param commonLabels Labels to add to all deployed objects
##
commonLabels: {}
## @param commonAnnotations Annotations to add to all deployed objects
##
commonAnnotations: {}
## @param clusterDomain Kubernetes cluster domain name
##
clusterDomain: cluster.local
## @param extraDeploy Array of extra objects to deploy with the release
##
extraDeploy: []
## Enable diagnostic mode in all Hyperdx deployments
##
diagnosticMode:
## @param diagnosticMode.enabled Enable diagnostic mode (all probes will be disabled and the command will be overridden)
##
enabled: false
## @param diagnosticMode.command Command to override all containers in the deployment
##
command:
- sleep
## @param diagnosticMode.args Args to override all containers in the deployment
##
args:
- infinity
## @section Hyperdx Common parameters
##
## @param apiKey the Hyperdx api key. TODO: If not specified, use the ingestion api key for self-instrumentation.
##
apiKey: ""
## @param logLevel the logging level across all Hyperdx pipeline components. Allowed values: `error`, `warn`, `info`, `http`, `verbose`, `debug`, `silly`
##
logLevel: info
## @param publicUrl Type A DNS record that points to the the LoadBalancer service of the API gateway (Kong)
##
publicUrl: ""
## @section Hyperdx dashboard app Parameters
##
##
app:
## @param app.enabled Enable hyperdx dashboard app
##
enabled: true
## @param app.replicaCount Number of Hyperdx app replicas to deploy
##
replicaCount: 1
## @param app.defaultConfig [string] Hyperdx app default configuration
##
# TODO: dashboard app client side is not yet able to read envs injected at runtime. See README for details
defaultConfig: |
HYPERDX_API_KEY: {{ .Values.apiKey }}
PORT: "8080"
NEXT_PUBLIC_OTEL_EXPORTER_OTLP_ENDPOINT: {{ .Values.publicUrl }}/collector
NEXT_PUBLIC_OTEL_SERVICE_NAME: "hdx-oss-app"
NEXT_PUBLIC_SERVER_URL: {{ include "hyperdx.api.publicUrl" . }}
## @param app.extraConfig Hyperdx app extra configuration
##
extraConfig: {}
## @param app.existingConfigmap The name of an existing ConfigMap with the default configuration
##
existingConfigmap: ""
## @param app.extraConfigExistingConfigmap The name of an existing ConfigMap with extra configuration
##
extraConfigExistingConfigmap: ""
## Hyperdx dashboard app image
## ref: https://github.com/hyperdxio/hyperdx/pkgs/container/hyperdx
## @param app.image.registry [default: ghcr.io] app image registry
## @param app.image.repository [default: hyperdxio/hyperdx] app image repository
## @skip app.image.tag app image tag (immutable tags are recommended)
## @param app.image.digest app image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag image tag (immutable tags are recommended)
## @param app.image.pullPolicy app image pull policy
## @param app.image.pullSecrets app image pull secrets
##
image:
registry: ghcr.io
repository: hyperdxio/hyperdx
tag: 1.10.0-app
digest: ""
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: http://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images
##
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
## e.g:
## pullSecrets:
## - myRegistryKeySecretName
##
pullSecrets: []
## @param app.containerPorts.http Hyperdx dashboard app HTTP container port
##
containerPorts:
http: 8080
## Configure extra options for Hyperdx app containers' liveness and readiness probes
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param app.livenessProbe.enabled Enable livenessProbe on Hyperdx app containers
## @param app.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param app.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param app.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param app.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param app.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 6
successThreshold: 1
## @param app.readinessProbe.enabled Enable readinessProbe on Hyperdx app containers
## @param app.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param app.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param app.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param app.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param app.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 6
successThreshold: 1
## @param app.startupProbe.enabled Enable startupProbe on Hyperdx app containers
## @param app.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
## @param app.startupProbe.periodSeconds Period seconds for startupProbe
## @param app.startupProbe.timeoutSeconds Timeout seconds for startupProbe
## @param app.startupProbe.failureThreshold Failure threshold for startupProbe
## @param app.startupProbe.successThreshold Success threshold for startupProbe
##
startupProbe:
enabled: false
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 6
successThreshold: 1
## @param app.customLivenessProbe Custom livenessProbe that overrides the default one
##
customLivenessProbe: {}
## @param app.customReadinessProbe Custom readinessProbe that overrides the default one
##
customReadinessProbe: {}
## @param app.customStartupProbe Custom startupProbe that overrides the default one
##
customStartupProbe: {}
## Hyperdx app resource requests and limits
## ref: http://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
## @param app.resources.limits The resources limits for the Hyperdx app containers
## @param app.resources.requests The requested resources for the Hyperdx app containers
##
resources:
limits: {}
requests: {}
## Configure Pods Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param app.podSecurityContext.enabled Enabled Hyperdx app pods' Security Context
## @param app.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy
## @param app.podSecurityContext.sysctls Set kernel settings using the sysctl interface
## @param app.podSecurityContext.supplementalGroups Set filesystem extra groups
## @param app.podSecurityContext.fsGroup Set Hyperdx app pod's Security Context fsGroup
##
podSecurityContext:
enabled: true
fsGroupChangePolicy: Always
sysctls: []
supplementalGroups: []
fsGroup: 1001
## Configure Container Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
## @param app.containerSecurityContext.enabled Enabled containers' Security Context
## @param app.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container
## @param app.containerSecurityContext.runAsUser Set containers' Security Context runAsUser
## @param app.containerSecurityContext.runAsNonRoot Set container's Security Context runAsNonRoot
## @param app.containerSecurityContext.privileged Set container's Security Context privileged
## @param app.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context readOnlyRootFilesystem
## @param app.containerSecurityContext.allowPrivilegeEscalation Set container's Security Context allowPrivilegeEscalation
## @param app.containerSecurityContext.capabilities.drop List of capabilities to be dropped
## @param app.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile
##
containerSecurityContext:
enabled: true
seLinuxOptions: null
runAsUser: 1001
runAsNonRoot: true
privileged: false
readOnlyRootFilesystem: false
allowPrivilegeEscalation: false
capabilities:
drop: ["ALL"]
seccompProfile:
type: "RuntimeDefault"
## @param app.command Override default container command (useful when using custom images)
##
command: []
## @param app.args Override default container args (useful when using custom images)
##
args: []
## @param app.automountServiceAccountToken Mount Service Account token in pod
##
automountServiceAccountToken: false
## @param app.hostAliases Hyperdx app pods host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
## @param app.podLabels Extra labels for Hyperdx app pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param app.podAnnotations Annotations for Hyperdx app pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param app.podAffinityPreset Pod affinity preset. Ignored if `app.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAffinityPreset: ""
## @param app.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `app.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAntiAffinityPreset: soft
## Node app.affinity preset
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
##
nodeAffinityPreset:
## @param app.nodeAffinityPreset.type Node affinity preset type. Ignored if `app.affinity` is set. Allowed values: `soft` or `hard`
##
type: ""
## @param app.nodeAffinityPreset.key Node label key to match. Ignored if `app.affinity` is set
##
key: ""
## @param app.nodeAffinityPreset.values Node label values to match. Ignored if `app.affinity` is set
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param app.affinity Affinity for Hyperdx app pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## NOTE: `app.podAffinityPreset`, `app.podAntiAffinityPreset`, and `app.nodeAffinityPreset` will be ignored when it's set
##
affinity: {}
## @param app.nodeSelector Node labels for Hyperdx app pods assignment
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/
##
nodeSelector: {}
## @param app.tolerations Tolerations for Hyperdx app pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param app.updateStrategy.type Hyperdx app statefulset strategy type
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
##
updateStrategy:
## StrategyType
## Can be set to RollingUpdate or OnDelete
##
type: RollingUpdate
## @param app.priorityClassName Hyperdx app pods' priorityClassName
##
priorityClassName: ""
## @param app.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template
## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods
##
topologySpreadConstraints: []
## @param app.schedulerName Name of the k8s scheduler (other than default) for Hyperdx app pods
## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
##
schedulerName: ""
## @param app.terminationGracePeriodSeconds Seconds Redmine pod needs to terminate gracefully
## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods
##
terminationGracePeriodSeconds: ""
## @param app.lifecycleHooks for the Hyperdx app container(s) to automate configuration before or after startup
##
lifecycleHooks: {}
## @param app.extraEnvVars Array with extra environment variables to add to Hyperdx app nodes
## e.g:
## extraEnvVars:
## - name: FOO
## value: "bar"
##
extraEnvVars: []
## @param app.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Hyperdx app nodes
##
extraEnvVarsCM: ""
## @param app.extraEnvVarsSecret Name of existing Secret containing extra env vars for Hyperdx app nodes
##
extraEnvVarsSecret: ""
## @param app.extraVolumes Optionally specify extra list of additional volumes for the Hyperdx app pod(s)
##
extraVolumes: []
## @param app.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Hyperdx app container(s)
##
extraVolumeMounts: []
## @param app.sidecars Add additional sidecar containers to the Hyperdx app pod(s)
## e.g:
## sidecars:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
sidecars: []
## @param app.initContainers Add additional init containers to the Hyperdx app pod(s)
## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
## e.g:
## initContainers:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## command: ['sh', '-c', 'echo "hello world"']
##
initContainers: []
## @section Hyperdx app Traffic Exposure Parameters
##
service:
## @param app.service.type Hyperdx app service type
##
type: ClusterIP
## @param app.service.ports.http Hyperdx app service HTTP port
##
ports:
http: 80
## Node ports to expose
## @param app.service.nodePorts.http Node port for HTTP
## NOTE: choose port between <30000-32767>
##
nodePorts:
http: ""
## @param app.service.clusterIP Hyperdx app service Cluster IP
## e.g.:
## clusterIP: None
##
clusterIP: ""
## @param app.service.loadBalancerIP Hyperdx app service Load Balancer IP
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
##
loadBalancerIP: ""
## @param app.service.loadBalancerSourceRanges Hyperdx app service Load Balancer sources
## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
## e.g:
## loadBalancerSourceRanges:
## - 10.10.10.0/24
##
loadBalancerSourceRanges: []
## @param app.service.externalTrafficPolicy Hyperdx app service external traffic policy
## ref http://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-app-source-ip
##
externalTrafficPolicy: Cluster
## @param app.service.annotations Additional custom annotations for Hyperdx app service
##
annotations: {}
## @param app.service.extraPorts Extra ports to expose in Hyperdx app service (normally used with the `sidecars` value)
##
extraPorts: []
## @param app.service.sessionAffinity Control where app requests go, to the same pod or round-robin
## Values: appIP or None
## ref: https://kubernetes.io/docs/concepts/services-networking/service/
##
sessionAffinity: None
## @param app.service.sessionAffinityConfig Additional settings for the sessionAffinity
## sessionAffinityConfig:
## appIP:
## timeoutSeconds: 300
##
sessionAffinityConfig: {}
## @section Hyperdx api Parameters
##
##
api:
## @param api.enabled Enable Hyperdx api
##
enabled: true
## @param api.replicaCount Number of Hyperdx api replicas to deploy
##
replicaCount: 1
## @param api.defaultConfig [string] Default configuration for the Hyperdx api service
##
defaultConfig: |
AGGREGATOR_API_URL: {{ include "hyperdx.aggregator.url" . }}
APP_TYPE: 'api'
CLICKHOUSE_HOST: {{ include "hyperdx.clickhouse.host" . | quote }}
CLICKHOUSE_LOG_LEVEL: {{ .Values.logLevel }}
CLICKHOUSE_USER: api
CLICKHOUSE_PASSWORD: api
EXPRESS_SESSION_SECRET: 'hyperdx is cool 👋'
FRONTEND_URL: {{ include "hyperdx.app.publicUrl" . }}
HDX_NODE_ADVANCED_NETWORK_CAPTURE: "1"
HDX_NODE_BETA_MODE: "1"
HDX_NODE_CONSOLE_CAPTURE: "1"
HYPERDX_API_KEY: {{ .Values.apiKey }}
HYPERDX_LOG_LEVEL: {{ .Values.logLevel }}
INGESTOR_API_URL: {{ include "hyperdx.ingestor.url" . }}
MINER_API_URL: {{ include "hyperdx.miner.url" . }}
MONGO_URI: {{ include "hyperdx.mongodb.uri" . }}
OTEL_EXPORTER_OTLP_ENDPOINT: {{ include "hyperdx.otelCollector.url" . }}
OTEL_SERVICE_NAME: "hdx-oss-api"
PORT: {{ .Values.api.containerPorts.http | quote }}
REDIS_URL: {{ include "hyperdx.redis.url" . }}
SERVER_URL: {{ include "hyperdx.api.url" . }}
USAGE_STATS_ENABLED: "false"
## @param api.extraConfig Extra configuration for the Hyperdx api service
##
extraConfig: {}
## @param api.existingConfigmap The name of an existing ConfigMap with the default configuration
##
existingConfigmap: ""
## @param api.extraConfigExistingConfigmap The name of an existing ConfigMap with extra configuration
##
extraConfigExistingConfigmap: ""
## Hyperdx api image
## ref: https://github.com/hyperdxio/hyperdx/pkgs/container/hyperdx
## @param api.image.registry [default: ghcr.io] api image registry
## @param api.image.repository [default: hyperdxio/hyperdx] api image repository
## @skip api.image.tag api image tag (immutable tags are recommended)
## @param api.image.digest api image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag image tag (immutable tags are recommended)
## @param api.image.pullPolicy api image pull policy
## @param api.image.pullSecrets api image pull secrets
##
image:
registry: ghcr.io
repository: hyperdxio/hyperdx
tag: 1.10.0-api
digest: ""
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: http://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images
##
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
## e.g:
## pullSecrets:
## - myRegistryKeySecretName
##
pullSecrets: []
## @param api.containerPorts.http Hyperdx api HTTP container port
##
containerPorts:
http: 8000
## Configure extra options for Hyperdx api containers' liveness and readiness probes
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param api.livenessProbe.enabled Enable livenessProbe on Hyperdx api containers
## @param api.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param api.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param api.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param api.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param api.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 6
successThreshold: 1
## @param api.readinessProbe.enabled Enable readinessProbe on Hyperdx api containers
## @param api.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param api.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param api.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param api.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param api.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 6
successThreshold: 1
## @param api.startupProbe.enabled Enable startupProbe on Hyperdx api containers
## @param api.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
## @param api.startupProbe.periodSeconds Period seconds for startupProbe
## @param api.startupProbe.timeoutSeconds Timeout seconds for startupProbe
## @param api.startupProbe.failureThreshold Failure threshold for startupProbe
## @param api.startupProbe.successThreshold Success threshold for startupProbe
##
startupProbe:
enabled: false
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 6
successThreshold: 1
## @param api.customLivenessProbe Custom livenessProbe that overrides the default one
##
customLivenessProbe: {}
## @param api.customReadinessProbe Custom readinessProbe that overrides the default one
##
customReadinessProbe: {}
## @param api.customStartupProbe Custom startupProbe that overrides the default one
##
customStartupProbe: {}
## Hyperdx api resource requests and limits
## ref: http://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
## @param api.resources.limits The resources limits for the Hyperdx api containers
## @param api.resources.requests The requested resources for the Hyperdx api containers
##
resources:
limits: {}
requests: {}
## Configure Pods Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param api.podSecurityContext.enabled Enabled Hyperdx api pods' Security Context
## @param api.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy
## @param api.podSecurityContext.sysctls Set kernel settings using the sysctl interface
## @param api.podSecurityContext.supplementalGroups Set filesystem extra groups
## @param api.podSecurityContext.fsGroup Set Hyperdx api pod's Security Context fsGroup
##
podSecurityContext:
enabled: true
fsGroupChangePolicy: Always
sysctls: []
supplementalGroups: []
fsGroup: 1001
## Configure Container Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
## @param api.containerSecurityContext.enabled Enabled containers' Security Context
## @param api.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container
## @param api.containerSecurityContext.runAsUser Set containers' Security Context runAsUser
## @param api.containerSecurityContext.runAsNonRoot Set container's Security Context runAsNonRoot
## @param api.containerSecurityContext.privileged Set container's Security Context privileged
## @param api.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context readOnlyRootFilesystem
## @param api.containerSecurityContext.allowPrivilegeEscalation Set container's Security Context allowPrivilegeEscalation
## @param api.containerSecurityContext.capabilities.drop List of capabilities to be dropped
## @param api.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile
##
containerSecurityContext:
enabled: true
seLinuxOptions: null
runAsUser: 1001
runAsNonRoot: true
privileged: false
readOnlyRootFilesystem: false
allowPrivilegeEscalation: false
capabilities:
drop: ["ALL"]
seccompProfile:
type: "RuntimeDefault"
## @param api.command Override default container command (useful when using custom images)
##
command: []
## @param api.args Override default container args (useful when using custom images)
##
args: []
## @param api.automountServiceAccountToken Mount Service Account token in pod
##
automountServiceAccountToken: false
## @param api.hostAliases Hyperdx api pods host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
## @param api.podLabels Extra labels for Hyperdx api pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param api.podAnnotations Annotations for Hyperdx api pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param api.podAffinityPreset Pod affinity preset. Ignored if `api.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAffinityPreset: ""
## @param api.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `api.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAntiAffinityPreset: soft
## Node api.affinity preset
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
##
nodeAffinityPreset:
## @param api.nodeAffinityPreset.type Node affinity preset type. Ignored if `api.affinity` is set. Allowed values: `soft` or `hard`
##
type: ""
## @param api.nodeAffinityPreset.key Node label key to match. Ignored if `api.affinity` is set
##
key: ""
## @param api.nodeAffinityPreset.values Node label values to match. Ignored if `api.affinity` is set
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param api.affinity Affinity for Hyperdx api pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## NOTE: `api.podAffinityPreset`, `api.podAntiAffinityPreset`, and `api.nodeAffinityPreset` will be ignored when it's set
##
affinity: {}
## @param api.nodeSelector Node labels for Hyperdx api pods assignment
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/
##
nodeSelector: {}
## @param api.tolerations Tolerations for Hyperdx api pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param api.updateStrategy.type Hyperdx api statefulset strategy type
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
##
updateStrategy:
## StrategyType
## Can be set to RollingUpdate or OnDelete
##
type: RollingUpdate
## @param api.priorityClassName Hyperdx api pods' priorityClassName
##
priorityClassName: ""
## @param api.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template
## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods
##
topologySpreadConstraints: []
## @param api.schedulerName Name of the k8s scheduler (other than default) for Hyperdx api pods
## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
##
schedulerName: ""
## @param api.terminationGracePeriodSeconds Seconds Redmine pod needs to terminate gracefully
## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods
##
terminationGracePeriodSeconds: ""
## @param api.lifecycleHooks for the Hyperdx api container(s) to automate configuration before or after startup
##
lifecycleHooks: {}
## @param api.extraEnvVars Array with extra environment variables to add to Hyperdx api nodes
## e.g:
## extraEnvVars:
## - name: FOO
## value: "bar"
##
extraEnvVars: []
## @param api.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Hyperdx api nodes
##
extraEnvVarsCM: ""
## @param api.extraEnvVarsSecret Name of existing Secret containing extra env vars for Hyperdx api nodes
##
extraEnvVarsSecret: ""
## @param api.extraVolumes Optionally specify extra list of additional volumes for the Hyperdx api pod(s)
##
extraVolumes: []
## @param api.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Hyperdx api container(s)
##
extraVolumeMounts: []
## @param api.sidecars Add additional sidecar containers to the Hyperdx api pod(s)
## e.g:
## sidecars:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
sidecars: []
## @param api.initContainers Add additional init containers to the Hyperdx api pod(s)
## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
## e.g:
## initContainers:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## command: ['sh', '-c', 'echo "hello world"']
##
initContainers: []
## @section Hyperdx Rest Traffic Exposure Parameters
##
service:
## @param api.service.type Hyperdx api service type
##
type: ClusterIP
## @param api.service.ports.http Hyperdx api service HTTP port
##
ports:
http: 80
## Node ports to expose
## @param api.service.nodePorts.http Node port for HTTP
## NOTE: choose port between <30000-32767>
##
nodePorts:
http: ""
## @param api.service.clusterIP Hyperdx api service Cluster IP
## e.g.:
## clusterIP: None
##
clusterIP: ""
## @param api.service.loadBalancerIP Hyperdx api service Load Balancer IP
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
##
loadBalancerIP: ""
## @param api.service.loadBalancerSourceRanges Hyperdx api service Load Balancer sources
## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
## e.g:
## loadBalancerSourceRanges:
## - 10.10.10.0/24
##
loadBalancerSourceRanges: []
## @param api.service.externalTrafficPolicy Hyperdx api service external traffic policy
## ref http://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-api-source-ip
##
externalTrafficPolicy: Cluster
## @param api.service.annotations Additional custom annotations for Hyperdx api service
##
annotations: {}
## @param api.service.extraPorts Extra ports to expose in Hyperdx api service (normally used with the `sidecars` value)
##
extraPorts: []
## @param api.service.sessionAffinity Control where api requests go, to the same pod or round-robin
## Values: RestIP or None
## ref: https://kubernetes.io/docs/concepts/services-networking/service/
##
sessionAffinity: None
## @param api.service.sessionAffinityConfig Additional settings for the sessionAffinity
## sessionAffinityConfig:
## restIP:
## timeoutSeconds: 300
##
sessionAffinityConfig: {}
## @section Hyperdx Ingestor Parameters
##
##
ingestor:
## @param ingestor.enabled Enable Hyperdx ingestor
##
enabled: true
## @param ingestor.replicaCount Number of Hyperdx ingestor replicas to deploy
##
replicaCount: 1
## @param ingestor.defaultConfig [string] Default configuration for the Hyperdx ingestor service
##
defaultConfig: |
AGGREGATOR_API_URL: {{ include "hyperdx.aggregator.url" . }}
ENABLE_GO_PARSER: {{ .Values.goParser.enabled | quote }}
GO_PARSER_API_URL: {{ include "hyperdx.goParser.url" . }}
RUST_BACKTRACE: "full"
VECTOR_LOG: {{ .Values.logLevel }}
VECTOR_OPENSSL_LEGACY_PROVIDER: "false"
## @param ingestor.extraConfig Extra configuration for the Hyperdx ingestor service
##
extraConfig: {}
## @param ingestor.existingConfigmap The name of an existing ConfigMap with the default configuration
##
existingConfigmap: ""
## @param ingestor.extraConfigExistingConfigmap The name of an existing ConfigMap with extra configuration
##
extraConfigExistingConfigmap: ""
## Hyperdx ingestor image
## ref: https://github.com/hyperdxio/hyperdx/pkgs/container/hyperdx
## @param ingestor.image.registry [default: ghcr.io] ingestor image registry
## @param ingestor.image.repository [default: hyperdxio/hyperdx] ingestor image repository
## @skip ingestor.image.tag ingestor image tag (immutable tags are recommended)
## @param ingestor.image.digest ingestor image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag image tag (immutable tags are recommended)
## @param ingestor.image.pullPolicy ingestor image pull policy
## @param ingestor.image.pullSecrets ingestor image pull secrets
##
image:
registry: ghcr.io
repository: hyperdxio/hyperdx
tag: 1.10.0-ingestor
digest: ""
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: http://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images
##
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
## e.g:
## pullSecrets:
## - myRegistryKeySecretName
##
pullSecrets: []
## @param ingestor.containerPorts.http Hyperdx ingestor HTTP container port
## @param ingestor.containerPorts.health Hyperdx ingestor HTTP health container port
##
containerPorts:
http: 8002
health: 8686
## Configure extra options for Hyperdx ingestor containers' liveness and readiness probes
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param ingestor.livenessProbe.enabled Enable livenessProbe on Hyperdx ingestor containers
## @param ingestor.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param ingestor.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param ingestor.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param ingestor.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param ingestor.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 6
successThreshold: 1
## @param ingestor.readinessProbe.enabled Enable readinessProbe on Hyperdx ingestor containers
## @param ingestor.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param ingestor.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param ingestor.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param ingestor.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param ingestor.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 6
successThreshold: 1
## @param ingestor.startupProbe.enabled Enable startupProbe on Hyperdx ingestor containers
## @param ingestor.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
## @param ingestor.startupProbe.periodSeconds Period seconds for startupProbe
## @param ingestor.startupProbe.timeoutSeconds Timeout seconds for startupProbe
## @param ingestor.startupProbe.failureThreshold Failure threshold for startupProbe
## @param ingestor.startupProbe.successThreshold Success threshold for startupProbe
##
startupProbe:
enabled: false
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 6
successThreshold: 1
## @param ingestor.customLivenessProbe Custom livenessProbe that overrides the default one
##
customLivenessProbe: {}
## @param ingestor.customReadinessProbe Custom readinessProbe that overrides the default one
##
customReadinessProbe: {}
## @param ingestor.customStartupProbe Custom startupProbe that overrides the default one
##
customStartupProbe: {}
## Hyperdx ingestor resource requests and limits
## ref: http://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
## @param ingestor.resources.limits The resources limits for the Hyperdx ingestor containers
## @param ingestor.resources.requests The requested resources for the Hyperdx ingestor containers
##
resources:
limits: {}
requests: {}
## Configure Pods Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param ingestor.podSecurityContext.enabled Enabled Hyperdx ingestor pods' Security Context
## @param ingestor.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy
## @param ingestor.podSecurityContext.sysctls Set kernel settings using the sysctl interface
## @param ingestor.podSecurityContext.supplementalGroups Set filesystem extra groups
## @param ingestor.podSecurityContext.fsGroup Set Hyperdx ingestor pod's Security Context fsGroup
##
podSecurityContext:
enabled: true
fsGroupChangePolicy: Always
sysctls: []
supplementalGroups: []
fsGroup: 1001
## Configure Container Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
## @param ingestor.containerSecurityContext.enabled Enabled containers' Security Context
## @param ingestor.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container
## @param ingestor.containerSecurityContext.runAsUser Set containers' Security Context runAsUser
## @param ingestor.containerSecurityContext.runAsNonRoot Set container's Security Context runAsNonRoot
## @param ingestor.containerSecurityContext.privileged Set container's Security Context privileged
## @param ingestor.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context readOnlyRootFilesystem
## @param ingestor.containerSecurityContext.allowPrivilegeEscalation Set container's Security Context allowPrivilegeEscalation
## @param ingestor.containerSecurityContext.capabilities.drop List of capabilities to be dropped
## @param ingestor.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile
##
containerSecurityContext:
enabled: true
seLinuxOptions: null
runAsUser: 1001
runAsNonRoot: true
privileged: false
readOnlyRootFilesystem: false
allowPrivilegeEscalation: false
capabilities:
drop: ["ALL"]
seccompProfile:
type: "RuntimeDefault"
## @param ingestor.command Override default container command (useful when using custom images)
##
command: []
## @param ingestor.args Override default container args (useful when using custom images)
##
args: []
## @param ingestor.automountServiceAccountToken Mount Service Account token in pod
##
automountServiceAccountToken: false
## @param ingestor.hostAliases Hyperdx ingestor pods host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
## @param ingestor.podLabels Extra labels for Hyperdx ingestor pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param ingestor.podAnnotations Annotations for Hyperdx ingestor pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param ingestor.podAffinityPreset Pod affinity preset. Ignored if `ingestor.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAffinityPreset: ""
## @param ingestor.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `ingestor.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAntiAffinityPreset: soft
## Node ingestor.affinity preset
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
##
nodeAffinityPreset:
## @param ingestor.nodeAffinityPreset.type Node affinity preset type. Ignored if `ingestor.affinity` is set. Allowed values: `soft` or `hard`
##
type: ""
## @param ingestor.nodeAffinityPreset.key Node label key to match. Ignored if `ingestor.affinity` is set
##
key: ""
## @param ingestor.nodeAffinityPreset.values Node label values to match. Ignored if `ingestor.affinity` is set
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param ingestor.affinity Affinity for Hyperdx ingestor pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## NOTE: `ingestor.podAffinityPreset`, `ingestor.podAntiAffinityPreset`, and `ingestor.nodeAffinityPreset` will be ignored when it's set
##
affinity: {}
## @param ingestor.nodeSelector Node labels for Hyperdx ingestor pods assignment