1# Default values for Vector
2# See Vector helm documentation to learn more:
3# https://vector.dev/docs/setup/installation/package-managers/helm/
5# nameOverride -- Override the name of resources.
7# fullnameOverride -- Override the full name of resources.
9# role -- [Role](https://vector.dev/docs/setup/deployment/roles/) for this Vector instance, valid options are:
10# "Agent", "Aggregator", and "Stateless-Aggregator".
12# Each role is created with the following workloads:
14# Aggregator = StatefulSet
15# Stateless-Aggregator = Deployment
17# Workload API version overrides. Use these to switch to custom controllers
18# or to test new Kubernetes API versions.
20 # daemonSet.apiVersion -- Override the DaemonSet apiVersion. Valid for the "Agent" role.
23 # statefulSet.apiVersion -- Override the StatefulSet apiVersion. Valid for the "Aggregator" role.
25# rollWorkload -- Add a checksum of the generated ConfigMap to workload annotations.
27# rollWorkloadSecrets -- Add a checksum of the generated Secret to workload annotations.
28rollWorkloadSecrets: false
29# rollWorkloadExtraObjects -- Add a checksum of the generated ExtraObjects to workload annotations.
30rollWorkloadExtraObjects: false
31# commonLabels -- Add additional labels to all created resources.
33# Define the Vector image to use.
34# Vector images are available from:
35# - Docker Hub: docker.io/timberio/vector
36# - GitHub Container Registry: ghcr.io/vectordotdev/vector
38 # image.repository -- Override default registry and name for Vector's image.
39 repository: cgr.dev/chainguard-private/vector
40 # image.pullPolicy -- The [pullPolicy](https://kubernetes.io/docs/concepts/containers/images/#image-pull-policy) for
42 pullPolicy: IfNotPresent
43 # image.pullSecrets -- The [imagePullSecrets](https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod)
44 # to reference for the Vector Pods.
46 # image.tag -- The tag to use for Vector's image.
47 # @default -- Derived from the Chart's appVersion.
49 # image.sha -- The SHA to use for Vector's image.
50 sha: sha256:fa6ca23faa9ecea3355b1aac893bd6d28bd4a29611eef37e1a69654a31ff2652
51 # image.base -- The base distribution to use for vector. If set, then the base in appVersion will be replaced with this base alongside the version.
52 # For example: with a `base` of `debian` `0.38.0-distroless-libc` becomes `0.38.0-debian`
54# replicas -- Specify the number of Pods to create. Valid for the "Aggregator" and "Stateless-Aggregator" roles.
56# Adding additional entries with hostAliases
63# podManagementPolicy -- Specify the [podManagementPolicy](https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#pod-management-policies)
64# for the StatefulSet. Valid for the "Aggregator" role.
65podManagementPolicy: OrderedReady
66# Create a Secret resource for Vector to use.
68 # secrets.annotations -- Set annotations on Vector Secrets.
70 # secrets.generic -- Each Key/Value will be added to the Secret's data key, each value should be raw and NOT base64
71 # encoded. Any secrets can be provided here. It's commonly used for credentials and other access related values.
72 # **NOTE: Don't commit unencrypted secrets to git!**
74 # my_variable: "my-secret-value"
75 # datadog_api_key: "api-key"
76 # awsAccessKeyId: "access-key"
77 # awsSecretAccessKey: "secret-access-key"
79 # autoscaling.enabled -- Create a [HorizontalPodAutoscaler](https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/)
80 # for Vector. Valid for the "Aggregator" and "Stateless-Aggregator" roles.
82 # autoscaling.external -- Set to `true` if using an external autoscaler like [KEDA](https://keda.sh/).
83 # Valid for the "Aggregator and "Stateless-Aggregator" roles.
85 # autoscaling.annotations -- Annotations to add to Vector's HPA.
87 # autoscaling.minReplicas -- Minimum replicas for Vector's HPA.
89 # autoscaling.maxReplicas -- Maximum replicas for Vector's HPA.
91 # autoscaling.targetCPUUtilizationPercentage -- Target CPU utilization for Vector's HPA.
92 targetCPUUtilizationPercentage: 80
93 # autoscaling.targetMemoryUtilizationPercentage -- (int) Target memory utilization for Vector's HPA.
94 targetMemoryUtilizationPercentage:
95 # autoscaling.customMetric -- Target a custom metric for autoscaling.
104 # autoscaling.behavior -- Configure separate scale-up and scale-down behaviors.
107 # stabilizationWindowSeconds: 300
109 # podDisruptionBudget.enabled -- Enable a [PodDisruptionBudget](https://kubernetes.io/docs/tasks/run-application/configure-pdb/)
112 # podDisruptionBudget.minAvailable -- The number of Pods that must still be available after an eviction.
114 # podDisruptionBudget.maxUnavailable -- (int) The number of Pods that can be unavailable after an eviction.
117 # rbac.create -- If true, create and use RBAC resources. Only valid for the "Agent" role.
119 # rbac.extraRules -- List of additional Kubernetes RBAC rules to append to the ClusterRole.
120 # Rules defined here are appended after the chart's standard rules.
121 # Each item must follow the Kubernetes ClusterRole rule syntax.
126 # resources: ["nodes/metrics", "nodes/stats"]
130 # psp.create -- If true, create a [PodSecurityPolicy](https://kubernetes.io/docs/concepts/security/pod-security-policy/)
131 # resource. PodSecurityPolicy is deprecated as of Kubernetes v1.21, and will be removed in v1.25. Intended for use
132 # with the "Agent" role.
135 # serviceAccount.create -- If true, create a ServiceAccount for Vector.
137 # serviceAccount.annotations -- Annotations to add to Vector's ServiceAccount.
139 # serviceAccount.name -- The name of the ServiceAccount to use. If not set and serviceAccount.create is true, a name
140 # is generated using the fullname template.
142 # serviceAccount.automountToken -- Automount API credentials for Vector's ServiceAccount.
144# podAnnotations -- Set annotations on Vector Pods.
146# podLabels -- Set labels on Vector Pods.
148 vector.dev/exclude: "true"
149# podPriorityClassName -- Set the [priorityClassName](https://kubernetes.io/docs/concepts/scheduling-eviction/pod-priority-preemption/#priorityclass)
151podPriorityClassName: ""
152# podHostNetwork -- Configure hostNetwork on Vector Pods.
154# podSecurityContext -- Allows you to overwrite the default [PodSecurityContext](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/)
156podSecurityContext: {}
157# workloadResourceAnnotations -- Set annotations on the Vector DaemonSet, Deployment or StatefulSet.
158workloadResourceAnnotations: {}
159# securityContext -- Specify securityContext on Vector containers.
161# command -- Override Vector's default command.
163# args -- Override Vector's default arguments.
167# env -- Set environment variables for Vector containers.
174# - name: AWS_ACCESS_KEY_ID
180# envFrom -- Define environment variables from Secrets or ConfigMaps.
185# containerPorts -- Manually define Vector's containerPorts, overriding automated generation of containerPorts.
187# resources -- Set Vector resource requests and limits.
196# lifecycle -- Set lifecycle hooks for Vector containers.
204# minReadySeconds -- Specify the minimum number of seconds a newly spun up pod should wait to
205# pass healthchecks before it is considered available.
207# revisionHistoryLimit -- The number of historical changes to retain to allow rollback. Valid for all roles (Agent, Aggregator, Stateless-Aggregator).
208# defaults to 10 if not set
209# revisionHistoryLimit: 10
211# updateStrategy -- Customize the updateStrategy used to replace Vector Pods, this is also used for the
212# DeploymentStrategy for the "Stateless-Aggregators". Valid options depend on the chosen role.
214# Agent (DaemonSetUpdateStrategy): https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/daemon-set-v1/#DaemonSetSpec)
215# Aggregator (StatefulSetUpdateStrategy): https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/stateful-set-v1/#StatefulSetSpec
216# Stateless-Aggregator (DeploymentStrategy): https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/deployment-v1/
222# terminationGracePeriodSeconds -- Override Vector's terminationGracePeriodSeconds.
223terminationGracePeriodSeconds: 60
224# nodeSelector -- Configure a [nodeSelector](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#nodeselector)
227# tolerations -- Configure Vector Pods to be scheduled on [tainted](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/)
230# affinity -- Configure [affinity](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity)
231# rules for Vector Pods.
233# topologySpreadConstraints -- Configure [topology spread constraints](https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/)
234# for Vector Pods. Valid for the "Aggregator" and "Stateless-Aggregator" roles.
236# If no "labelSelector" is defined, Vector's selector labels will be used by default.
237topologySpreadConstraints: []
238# Configuration for Vector's Service.
240 # service.enabled -- If true, create and provide a Service resource for Vector.
242 # service.type -- Set the type for Vector's Service.
244 # service.annotations -- Set annotations on Vector's Service.
246 # service.topologyKeys -- Specify the [topologyKeys](https://kubernetes.io/docs/concepts/services-networking/service-topology/#using-service-topology)
247 # field on Vector's Service.
249 # - "kubernetes.io/hostname"
250 # - "topology.kubernetes.io/zone"
251 # - "topology.kubernetes.io/region"
253 # service.ports -- Manually set the Service ports, overriding automated generation of Service ports.
255 # service.externalTrafficPolicy -- Specify the [externalTrafficPolicy](https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip).
256 externalTrafficPolicy: ""
257 # service.internalTrafficPolicy -- Specify the [internalTrafficPolicy](https://kubernetes.io/docs/concepts/services-networking/service-traffic-policy).
258 internalTrafficPolicy: ""
259 # service.loadBalancerIP -- Specify the [loadBalancerIP](https://kubernetes.io/docs/concepts/services-networking/service/#loadbalancer).
261 # service.ipFamilyPolicy -- Configure [IPv4/IPv6 dual-stack](https://kubernetes.io/docs/concepts/services-networking/dual-stack/).
263 # service.ipFamilies -- Configure [IPv4/IPv6 dual-stack](https://kubernetes.io/docs/concepts/services-networking/dual-stack/).
265 # service.trafficDistribution -- Specify the [Traffic distribution](https://kubernetes.io/docs/concepts/services-networking/service/#traffic-distribution)
266 # additional Topology Aware Routing may be informative. Specify the [Topology Aware Routing](https://kubernetes.io/docs/concepts/services-networking/topology-aware-routing/)
267 trafficDistribution: ""
268# Configuration for Vector's Headless Service.
270 # serviceHeadless.enabled -- If true, create and provide a Headless Service resource for Vector.
272# Configuration for Vector's Ingress.
274 # ingress.enabled -- If true, create and use an Ingress resource.
276 # ingress.className -- Specify the [ingressClassName](https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/#specifying-the-class-of-an-ingress),
277 # requires Kubernetes >= 1.18
279 # ingress.annotations -- Set annotations on the Ingress.
281 # kubernetes.io/ingress.class: nginx
282 # kubernetes.io/tls-acme: "true"
283 # ingress.hosts -- Configure the hosts and paths for the Ingress.
285 # - host: chart-example.local
288 # pathType: ImplementationSpecific
289 # # Specify the port name or number on the Service
290 # # Using name requires Kubernetes >=1.19
294 # ingress.tls -- Configure TLS for the Ingress.
296 # - secretName: chart-example-tls
298 # - chart-example.local
299# existingConfigMaps -- List of existing ConfigMaps for Vector's configuration instead of creating a new one. Requires
300# dataDir to be set. Additionally, containerPorts, service.ports, and serviceHeadless.ports should be specified based on
301# your supplied configuration. If set, this parameter takes precedence over customConfig and the chart's default configs.
302existingConfigMaps: []
303# dataDir -- Specify the path for Vector's data, only used when existingConfigMaps are used.
305# customConfig -- Override Vector's default configs, if used **all** options need to be specified. This section supports
306# using helm templates to populate dynamic values. See Vector's [configuration documentation](https://vector.dev/docs/reference/configuration/)
309# data_dir: /vector-data-dir
312# address: 127.0.0.1:8686
315# address: 0.0.0.0:6000
325# defaultVolumes -- Default volumes that are mounted into pods. In most cases, these should not be changed.
326# Use `extraVolumes`/`extraVolumeMounts` for additional custom volumes.
327# @default -- See `values.yaml`
341# defaultVolumeMounts -- Default volume mounts. Corresponds to `volumes`.
342# @default -- See `values.yaml`
345 mountPath: "/var/log/"
348 mountPath: "/var/lib"
351 mountPath: "/host/proc"
354 mountPath: "/host/sys"
356# extraVolumes -- Additional Volumes to use with Vector Pods.
358# extraVolumeMounts -- Additional Volume to mount into Vector Containers.
360# initContainers -- Init Containers to be added to the Vector Pods.
361# This also supports template content, which will eventually be converted to yaml.
365# image: busybox:latest
375# extraContainers -- Extra Containers to be added to the Vector Pods.
376# This also supports template content, which will eventually be converted to yaml.
385# image: busybox:latest
390# Configuration for Vector's data persistence.
392 # persistence.enabled -- If true, create and use PersistentVolumeClaims.
394 # persistence.existingClaim -- Name of an existing PersistentVolumeClaim to use. Valid for the "Aggregator" role.
396 # persistence.storageClassName -- Specifies the storageClassName for PersistentVolumeClaims. Valid for the
398 # storageClassName: default
400 # persistence.retentionPolicy -- Configure a [PersistentVolumeClaimRetentionPolicy](https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#persistentvolumeclaim-retention)
401 # for Vector's PersistentVolumeClaims. Valid for the "Aggregator" role.
403 # whenDeleted: Retain
406 # persistence.annotations -- Set annotations on the PersistentVolumeClaims created by the StatefulSet.
408 # persistence.accessModes -- Specifies the accessModes for PersistentVolumeClaims. Valid for the "Aggregator" role.
411 # persistence.size -- Specifies the size of PersistentVolumeClaims. Valid for the "Aggregator" role.
413 # persistence.finalizers -- Specifies the finalizers of PersistentVolumeClaims. Valid for the "Aggregator" role.
415 - kubernetes.io/pvc-protection
416 # persistence.selectors -- Specifies the selectors for PersistentVolumeClaims. Valid for the "Aggregator" role.
419 # persistence.hostPath.enabled -- If true, use hostPath persistence. Valid for the "Agent" role, if it's disabled
420 # the "Agent" role will use emptyDir.
422 # persistence.hostPath.path -- Override path used for hostPath persistence. Valid for the "Agent" role, persistence
423 # is always used for the "Agent" role.
424 path: "/var/lib/vector"
425# dnsPolicy -- Specify the [dnsPolicy](https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-policy)
427dnsPolicy: ClusterFirst
428# dnsConfig -- Specify the [dnsConfig](https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-dns-config)
429# options for Vector Pods.
434# - ns1.svc.cluster-domain.example
435# - my.dns.search.suffix
441# shareProcessNamespace -- Specify the [shareProcessNamespace](https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/)
442# options for Vector Pods.
443shareProcessNamespace: false
444# livenessProbe -- Override default liveness probe settings. If customConfig is used, requires customConfig.api.enabled
445# to be set to true. `grpc` is recommended once the cluster is on Vector 0.55+; the `httpGet /health` probe is kept
446# for backwards compatibility with older Vector versions.
448# Option 1: gRPC probe (uses grpc.health.v1.Health/Check, requires Vector 0.55+)
452# Option 2: HTTP probe
457# readinessProbe -- Override default readiness probe settings. If not set, this chart applies an
458# `httpGet /health` readinessProbe on port `8686` for chart-managed default configs. If customConfig is used,
459# requires customConfig.api.enabled to be set to true. `grpc` is recommended once the cluster is on Vector 0.55+;
460# the `httpGet /health` probe is kept for backwards compatibility with older Vector versions.
462# Option 1: gRPC probe (uses grpc.health.v1.Health/Check, requires Vector 0.55+)
466# Option 2: HTTP probe
471# startupProbe -- Override default startup probe settings. If customConfig is used,
472# requires customConfig.api.enabled to be set to true. `grpc` is recommended once the cluster is on Vector 0.55+;
473# the `httpGet /health` probe is kept for backwards compatibility with older Vector versions.
475# Option 1: gRPC probe (uses grpc.health.v1.Health/Check, requires Vector 0.55+)
479# Option 2: HTTP probe
484# Configure a PodMonitor for Vector, requires the PodMonitor CRD to be installed.
486 # podMonitor.enabled -- If true, create a PodMonitor for Vector.
488 # podMonitor.jobLabel -- Override the label to retrieve the job name from.
489 jobLabel: app.kubernetes.io/name
490 # podMonitor.port -- Override the port to scrape.
492 # podMonitor.path -- Override the path to scrape.
494 # podMonitor.interval -- Override the interval at which metrics should be scraped.
496 # podMonitor.scrapeTimeout -- Override the timeout after which the scrape is ended.
498 # podMonitor.relabelings -- [RelabelConfigs](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config)
499 # to apply to samples before scraping.
501 # podMonitor.metricRelabelings -- [MetricRelabelConfigs](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs)
502 # to apply to samples before ingestion.
503 metricRelabelings: []
504 # podMonitor.podTargetLabels -- [podTargetLabels](https://prometheus-operator.dev/docs/operator/api/#monitoring.coreos.com/v1.PodMonitorSpec)
505 # transfers labels on the Kubernetes Pod onto the target.
507 # podMonitor.additionalLabels -- Adds additional labels to the PodMonitor.
509 # podMonitor.honorLabels -- If true, honor_labels is set to true in the [scrape config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#scrape_config).
511 # podMonitor.honorTimestamps -- If true, honor_timestamps is set to true in the [scrape config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#scrape_config).
512 honorTimestamps: true
513# Log level for Vector.
515# Optional built-in HAProxy load balancer.
517 # haproxy.enabled -- If true, create a HAProxy load balancer.
519 # Define the HAProxy image to use.
521 # haproxy.image.repository -- Override default registry and name for HAProxy.
522 repository: cgr.dev/chainguard-private/haproxy
523 # haproxy.image.pullPolicy -- HAProxy image pullPolicy.
524 pullPolicy: IfNotPresent
525 # haproxy.image.pullSecrets -- The [imagePullSecrets](https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod)
526 # to reference for the HAProxy Pods.
528 # haproxy.image.tag -- The tag to use for HAProxy's image.
529 tag: 3.4.4@sha256:5de970729a6d330846fcf7581f038115181239afeeb8d7e9247492064cc58dd3
530 # haproxy.rollWorkload -- Add a checksum of the generated ConfigMap to the HAProxy Deployment.
532 # haproxy.replicas -- Set the number of HAProxy Pods to create.
535 # haproxy.serviceAccount.create -- If true, create a HAProxy ServiceAccount.
537 # haproxy.serviceAccount.annotations -- Annotations to add to the HAProxy ServiceAccount.
539 # haproxy.serviceAccount.name -- The name of the HAProxy ServiceAccount to use. If not set and create is true, a
540 # name is generated using the fullname template.
542 # haproxy.serviceAccount.automountToken -- Automount API credentials for the HAProxy ServiceAccount.
544 # haproxy.strategy -- Customize the [strategy](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/deployment-v1/)
545 # used to replace HAProxy Pods.
549 # maxUnavailable: 25%
550 # type: RollingUpdate
552 # haproxy.terminationGracePeriodSeconds -- Override HAProxy's terminationGracePeriodSeconds.
553 terminationGracePeriodSeconds: 60
554 # haproxy.podAnnotations -- Set annotations on HAProxy Pods.
556 # haproxy.podLabels -- Set labels on HAProxy Pods.
558 # haproxy.podPriorityClassName -- Set the priorityClassName on HAProxy Pods.
559 podPriorityClassName: ""
560 # haproxy.podSecurityContext -- Allows you to overwrite the default PodSecurityContext for HAProxy.
561 podSecurityContext: {}
564 # haproxy.securityContext -- Specify securityContext on HAProxy containers.
569 # readOnlyRootFilesystem: true
573 # haproxy.containerPorts -- Manually define HAProxy's containerPorts, overrides automated generation of containerPorts.
575 # HAProxy's Service configuration.
577 # haproxy.service.type -- Set type of HAProxy's Service.
579 # haproxy.service.annotations -- Set annotations on HAProxy's Service.
581 # haproxy.service.topologyKeys -- Specify the [topologyKeys](https://kubernetes.io/docs/concepts/services-networking/service-topology/#using-service-topology)
582 # field on HAProxy's Service spec.
584 # - "kubernetes.io/hostname"
585 # - "topology.kubernetes.io/zone"
586 # - "topology.kubernetes.io/region"
588 # haproxy.service.ports -- Manually set HAPRoxy's Service ports, overrides automated generation of Service ports.
590 # haproxy.service.externalTrafficPolicy -- Specify the [externalTrafficPolicy](https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip).
591 externalTrafficPolicy: ""
592 # haproxy.service.loadBalancerIP -- Specify the [loadBalancerIP](https://kubernetes.io/docs/concepts/services-networking/service/#loadbalancer).
594 # haproxy.service.ipFamilyPolicy -- Configure [IPv4/IPv6 dual-stack](https://kubernetes.io/docs/concepts/services-networking/dual-stack/).
596 # haproxy.service.ipFamilies -- Configure [IPv4/IPv6 dual-stack](https://kubernetes.io/docs/concepts/services-networking/dual-stack/).
598 # haproxy.existingConfigMap -- Use this existing ConfigMap for HAProxy's configuration instead of creating a new one.
599 # Additionally, haproxy.containerPorts and haproxy.service.ports should be specified based on your supplied
600 # configuration. If set, this parameter takes precedence over customConfig and the chart's default configs.
601 existingConfigMap: ""
602 # haproxy.customConfig -- Override HAProxy's default configs, if used **all** options need to be specified.
603 # This parameter supports using Helm templates to insert values dynamically. By default, this chart will parse
604 # Vector's configuration from customConfig to generate HAProxy's config, which can be overwritten with
605 # haproxy.customConfig.
607 # haproxy.extraVolumes -- Additional Volumes to use with HAProxy Pods.
609 # haproxy.extraVolumeMounts -- Additional Volume to mount into HAProxy Containers.
610 extraVolumeMounts: []
611 # haproxy.initContainers -- Init Containers to be added to the HAProxy Pods.
612 # This also supports template content, which will eventually be converted to yaml.
614 # haproxy.extraContainers -- Extra Containers to be added to the HAProxy Pods.
615 # This also supports template content, which will eventually be converted to yaml.
618 # haproxy.autoscaling.enabled -- Create a HorizontalPodAutoscaler for HAProxy.
620 # haproxy.autoscaling.external -- HAProxy is controlled by an external HorizontalPodAutoscaler.
622 # haproxy.autoscaling.minReplicas -- Minimum replicas for HAProxy's HPA.
624 # haproxy.autoscaling.maxReplicas -- Maximum replicas for HAProxy's HPA.
626 # haproxy.autoscaling.targetCPUUtilizationPercentage -- Target CPU utilization for HAProxy's HPA.
627 targetCPUUtilizationPercentage: 80
628 # haproxy.autoscaling.targetMemoryUtilizationPercentage -- (int) Target memory utilization for HAProxy's HPA.
629 targetMemoryUtilizationPercentage:
630 # haproxy.autoscaling.customMetric -- Target a custom metric for autoscaling.
639 # haproxy.resources -- Set HAProxy resource requests and limits.
648 # haproxy.livenessProbe -- Override default HAProxy liveness probe settings.
652 # haproxy.readinessProbe -- Override default HAProxy readiness probe settings.
656 # haproxy.nodeSelector -- Configure a [nodeSelector](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#nodeselector)
659 # haproxy.tolerations -- Configure HAProxy Pods to be scheduled on [tainted](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/)
662 # haproxy.affinity -- Configure [affinity](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity)
663 # rules for HAProxy Pods.
665# extraObjects -- Create extra manifests via values. Would be passed through `tpl` for templating.
670# name: vector-dashboards
672# grafana_dashboard: "1"
675# {{ .Files.Get "dashboards/vector.json" | fromJson | toJson }}