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:4408975d24ed9affd6162566d6be27a7b41c3fed0688c3b05daa9075a285761d
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.generic -- Each Key/Value will be added to the Secret's data key, each value should be raw and NOT base64
69 # encoded. Any secrets can be provided here. It's commonly used for credentials and other access related values.
70 # **NOTE: Don't commit unencrypted secrets to git!**
72 # my_variable: "my-secret-value"
73 # datadog_api_key: "api-key"
74 # awsAccessKeyId: "access-key"
75 # awsSecretAccessKey: "secret-access-key"
77 # autoscaling.enabled -- Create a [HorizontalPodAutoscaler](https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/)
78 # for Vector. Valid for the "Aggregator" and "Stateless-Aggregator" roles.
80 # autoscaling.external -- Set to `true` if using an external autoscaler like [KEDA](https://keda.sh/).
81 # Valid for the "Aggregator and "Stateless-Aggregator" roles.
83 # autoscaling.annotations -- Annotations to add to Vector's HPA.
85 # autoscaling.minReplicas -- Minimum replicas for Vector's HPA.
87 # autoscaling.maxReplicas -- Maximum replicas for Vector's HPA.
89 # autoscaling.targetCPUUtilizationPercentage -- Target CPU utilization for Vector's HPA.
90 targetCPUUtilizationPercentage: 80
91 # autoscaling.targetMemoryUtilizationPercentage -- (int) Target memory utilization for Vector's HPA.
92 targetMemoryUtilizationPercentage:
93 # autoscaling.customMetric -- Target a custom metric for autoscaling.
102 # autoscaling.behavior -- Configure separate scale-up and scale-down behaviors.
105 # stabilizationWindowSeconds: 300
107 # podDisruptionBudget.enabled -- Enable a [PodDisruptionBudget](https://kubernetes.io/docs/tasks/run-application/configure-pdb/)
110 # podDisruptionBudget.minAvailable -- The number of Pods that must still be available after an eviction.
112 # podDisruptionBudget.maxUnavailable -- (int) The number of Pods that can be unavailable after an eviction.
115 # rbac.create -- If true, create and use RBAC resources. Only valid for the "Agent" role.
117 # rbac.extraRules -- List of additional Kubernetes RBAC rules to append to the ClusterRole.
118 # Rules defined here are appended after the chart's standard rules.
119 # Each item must follow the Kubernetes ClusterRole rule syntax.
124 # resources: ["nodes/metrics", "nodes/stats"]
128 # psp.create -- If true, create a [PodSecurityPolicy](https://kubernetes.io/docs/concepts/security/pod-security-policy/)
129 # resource. PodSecurityPolicy is deprecated as of Kubernetes v1.21, and will be removed in v1.25. Intended for use
130 # with the "Agent" role.
133 # serviceAccount.create -- If true, create a ServiceAccount for Vector.
135 # serviceAccount.annotations -- Annotations to add to Vector's ServiceAccount.
137 # serviceAccount.name -- The name of the ServiceAccount to use. If not set and serviceAccount.create is true, a name
138 # is generated using the fullname template.
140 # serviceAccount.automountToken -- Automount API credentials for Vector's ServiceAccount.
142# podAnnotations -- Set annotations on Vector Pods.
144# podLabels -- Set labels on Vector Pods.
146 vector.dev/exclude: "true"
147# podPriorityClassName -- Set the [priorityClassName](https://kubernetes.io/docs/concepts/scheduling-eviction/pod-priority-preemption/#priorityclass)
149podPriorityClassName: ""
150# podHostNetwork -- Configure hostNetwork on Vector Pods.
152# podSecurityContext -- Allows you to overwrite the default [PodSecurityContext](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/)
154podSecurityContext: {}
155# workloadResourceAnnotations -- Set annotations on the Vector DaemonSet, Deployment or StatefulSet.
156workloadResourceAnnotations: {}
157# securityContext -- Specify securityContext on Vector containers.
159# command -- Override Vector's default command.
161# args -- Override Vector's default arguments.
165# env -- Set environment variables for Vector containers.
172# - name: AWS_ACCESS_KEY_ID
178# envFrom -- Define environment variables from Secrets or ConfigMaps.
183# containerPorts -- Manually define Vector's containerPorts, overriding automated generation of containerPorts.
185# resources -- Set Vector resource requests and limits.
194# lifecycle -- Set lifecycle hooks for Vector containers.
202# minReadySeconds -- Specify the minimum number of seconds a newly spun up pod should wait to
203# pass healthchecks before it is considered available.
205# revisionHistoryLimit -- The number of historical changes to retain to allow rollback. Valid for all roles (Agent, Aggregator, Stateless-Aggregator).
206# defaults to 10 if not set
207# revisionHistoryLimit: 10
209# updateStrategy -- Customize the updateStrategy used to replace Vector Pods, this is also used for the
210# DeploymentStrategy for the "Stateless-Aggregators". Valid options depend on the chosen role.
212# Agent (DaemonSetUpdateStrategy): https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/daemon-set-v1/#DaemonSetSpec)
213# Aggregator (StatefulSetUpdateStrategy): https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/stateful-set-v1/#StatefulSetSpec
214# Stateless-Aggregator (DeploymentStrategy): https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/deployment-v1/
220# terminationGracePeriodSeconds -- Override Vector's terminationGracePeriodSeconds.
221terminationGracePeriodSeconds: 60
222# nodeSelector -- Configure a [nodeSelector](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#nodeselector)
225# tolerations -- Configure Vector Pods to be scheduled on [tainted](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/)
228# affinity -- Configure [affinity](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity)
229# rules for Vector Pods.
231# topologySpreadConstraints -- Configure [topology spread constraints](https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/)
232# for Vector Pods. Valid for the "Aggregator" and "Stateless-Aggregator" roles.
233topologySpreadConstraints: []
234# Configuration for Vector's Service.
236 # service.enabled -- If true, create and provide a Service resource for Vector.
238 # service.type -- Set the type for Vector's Service.
240 # service.annotations -- Set annotations on Vector's Service.
242 # service.topologyKeys -- Specify the [topologyKeys](https://kubernetes.io/docs/concepts/services-networking/service-topology/#using-service-topology)
243 # field on Vector's Service.
245 # - "kubernetes.io/hostname"
246 # - "topology.kubernetes.io/zone"
247 # - "topology.kubernetes.io/region"
249 # service.ports -- Manually set the Service ports, overriding automated generation of Service ports.
251 # service.externalTrafficPolicy -- Specify the [externalTrafficPolicy](https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip).
252 externalTrafficPolicy: ""
253 # service.internalTrafficPolicy -- Specify the [internalTrafficPolicy](https://kubernetes.io/docs/concepts/services-networking/service-traffic-policy).
254 internalTrafficPolicy: ""
255 # service.loadBalancerIP -- Specify the [loadBalancerIP](https://kubernetes.io/docs/concepts/services-networking/service/#loadbalancer).
257 # service.ipFamilyPolicy -- Configure [IPv4/IPv6 dual-stack](https://kubernetes.io/docs/concepts/services-networking/dual-stack/).
259 # service.ipFamilies -- Configure [IPv4/IPv6 dual-stack](https://kubernetes.io/docs/concepts/services-networking/dual-stack/).
261 # service.trafficDistribution -- Specify the [Traffic distribution](https://kubernetes.io/docs/concepts/services-networking/service/#traffic-distribution)
262 # additional Topology Aware Routing may be informative. Specify the [Topology Aware Routing](https://kubernetes.io/docs/concepts/services-networking/topology-aware-routing/)
263 trafficDistribution: ""
264# Configuration for Vector's Headless Service.
266 # serviceHeadless.enabled -- If true, create and provide a Headless Service resource for Vector.
268# Configuration for Vector's Ingress.
270 # ingress.enabled -- If true, create and use an Ingress resource.
272 # 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),
273 # requires Kubernetes >= 1.18
275 # ingress.annotations -- Set annotations on the Ingress.
277 # kubernetes.io/ingress.class: nginx
278 # kubernetes.io/tls-acme: "true"
279 # ingress.hosts -- Configure the hosts and paths for the Ingress.
281 # - host: chart-example.local
284 # pathType: ImplementationSpecific
285 # # Specify the port name or number on the Service
286 # # Using name requires Kubernetes >=1.19
290 # ingress.tls -- Configure TLS for the Ingress.
292 # - secretName: chart-example-tls
294 # - chart-example.local
295# existingConfigMaps -- List of existing ConfigMaps for Vector's configuration instead of creating a new one. Requires
296# dataDir to be set. Additionally, containerPorts, service.ports, and serviceHeadless.ports should be specified based on
297# your supplied configuration. If set, this parameter takes precedence over customConfig and the chart's default configs.
298existingConfigMaps: []
299# dataDir -- Specify the path for Vector's data, only used when existingConfigMaps are used.
301# customConfig -- Override Vector's default configs, if used **all** options need to be specified. This section supports
302# using helm templates to populate dynamic values. See Vector's [configuration documentation](https://vector.dev/docs/reference/configuration/)
305# data_dir: /vector-data-dir
308# address: 127.0.0.1:8686
311# address: 0.0.0.0:6000
321# defaultVolumes -- Default volumes that are mounted into pods. In most cases, these should not be changed.
322# Use `extraVolumes`/`extraVolumeMounts` for additional custom volumes.
323# @default -- See `values.yaml`
337# defaultVolumeMounts -- Default volume mounts. Corresponds to `volumes`.
338# @default -- See `values.yaml`
341 mountPath: "/var/log/"
344 mountPath: "/var/lib"
347 mountPath: "/host/proc"
350 mountPath: "/host/sys"
352# extraVolumes -- Additional Volumes to use with Vector Pods.
354# extraVolumeMounts -- Additional Volume to mount into Vector Containers.
356# initContainers -- Init Containers to be added to the Vector Pods.
357# This also supports template content, which will eventually be converted to yaml.
361# image: busybox:latest
371# extraContainers -- Extra Containers to be added to the Vector Pods.
372# This also supports template content, which will eventually be converted to yaml.
381# image: busybox:latest
386# Configuration for Vector's data persistence.
388 # persistence.enabled -- If true, create and use PersistentVolumeClaims.
390 # persistence.existingClaim -- Name of an existing PersistentVolumeClaim to use. Valid for the "Aggregator" role.
392 # persistence.storageClassName -- Specifies the storageClassName for PersistentVolumeClaims. Valid for the
394 # storageClassName: default
396 # persistence.retentionPolicy -- Configure a [PersistentVolumeClaimRetentionPolicy](https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#persistentvolumeclaim-retention)
397 # for Vector's PersistentVolumeClaims. Valid for the "Aggregator" role.
399 # whenDeleted: Retain
402 # persistence.accessModes -- Specifies the accessModes for PersistentVolumeClaims. Valid for the "Aggregator" role.
405 # persistence.size -- Specifies the size of PersistentVolumeClaims. Valid for the "Aggregator" role.
407 # persistence.finalizers -- Specifies the finalizers of PersistentVolumeClaims. Valid for the "Aggregator" role.
409 - kubernetes.io/pvc-protection
410 # persistence.selectors -- Specifies the selectors for PersistentVolumeClaims. Valid for the "Aggregator" role.
413 # persistence.hostPath.enabled -- If true, use hostPath persistence. Valid for the "Agent" role, if it's disabled
414 # the "Agent" role will use emptyDir.
416 # persistence.hostPath.path -- Override path used for hostPath persistence. Valid for the "Agent" role, persistence
417 # is always used for the "Agent" role.
418 path: "/var/lib/vector"
419# dnsPolicy -- Specify the [dnsPolicy](https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-policy)
421dnsPolicy: ClusterFirst
422# dnsConfig -- Specify the [dnsConfig](https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-dns-config)
423# options for Vector Pods.
428# - ns1.svc.cluster-domain.example
429# - my.dns.search.suffix
435# shareProcessNamespace -- Specify the [shareProcessNamespace](https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/)
436# options for Vector Pods.
437shareProcessNamespace: false
438# livenessProbe -- Override default liveness probe settings. If customConfig is used, requires customConfig.api.enabled
439# to be set to true. `grpc` is recommended once the cluster is on Vector 0.55+; the `httpGet /health` probe is kept
440# for backwards compatibility with older Vector versions.
442# Option 1: gRPC probe (uses grpc.health.v1.Health/Check, requires Vector 0.55+)
446# Option 2: HTTP probe
451# readinessProbe -- Override default readiness probe settings. If not set, this chart applies an
452# `httpGet /health` readinessProbe on port `8686` for chart-managed default configs. If customConfig is used,
453# requires customConfig.api.enabled to be set to true. `grpc` is recommended once the cluster is on Vector 0.55+;
454# the `httpGet /health` probe is kept for backwards compatibility with older Vector versions.
456# Option 1: gRPC probe (uses grpc.health.v1.Health/Check, requires Vector 0.55+)
460# Option 2: HTTP probe
465# startupProbe -- Override default startup probe settings. If customConfig is used,
466# requires customConfig.api.enabled to be set to true. `grpc` is recommended once the cluster is on Vector 0.55+;
467# the `httpGet /health` probe is kept for backwards compatibility with older Vector versions.
469# Option 1: gRPC probe (uses grpc.health.v1.Health/Check, requires Vector 0.55+)
473# Option 2: HTTP probe
478# Configure a PodMonitor for Vector, requires the PodMonitor CRD to be installed.
480 # podMonitor.enabled -- If true, create a PodMonitor for Vector.
482 # podMonitor.jobLabel -- Override the label to retrieve the job name from.
483 jobLabel: app.kubernetes.io/name
484 # podMonitor.port -- Override the port to scrape.
486 # podMonitor.path -- Override the path to scrape.
488 # podMonitor.interval -- Override the interval at which metrics should be scraped.
490 # podMonitor.scrapeTimeout -- Override the timeout after which the scrape is ended.
492 # podMonitor.relabelings -- [RelabelConfigs](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config)
493 # to apply to samples before scraping.
495 # podMonitor.metricRelabelings -- [MetricRelabelConfigs](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs)
496 # to apply to samples before ingestion.
497 metricRelabelings: []
498 # podMonitor.podTargetLabels -- [podTargetLabels](https://prometheus-operator.dev/docs/operator/api/#monitoring.coreos.com/v1.PodMonitorSpec)
499 # transfers labels on the Kubernetes Pod onto the target.
501 # podMonitor.additionalLabels -- Adds additional labels to the PodMonitor.
503 # podMonitor.honorLabels -- If true, honor_labels is set to true in the [scrape config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#scrape_config).
505 # podMonitor.honorTimestamps -- If true, honor_timestamps is set to true in the [scrape config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#scrape_config).
506 honorTimestamps: true
507# Log level for Vector.
509# Optional built-in HAProxy load balancer.
511 # haproxy.enabled -- If true, create a HAProxy load balancer.
513 # Define the HAProxy image to use.
515 # haproxy.image.repository -- Override default registry and name for HAProxy.
516 repository: cgr.dev/chainguard-private/haproxy
517 # haproxy.image.pullPolicy -- HAProxy image pullPolicy.
518 pullPolicy: IfNotPresent
519 # haproxy.image.pullSecrets -- The [imagePullSecrets](https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod)
520 # to reference for the HAProxy Pods.
522 # haproxy.image.tag -- The tag to use for HAProxy's image.
523 tag: latest@sha256:ddeb5e875c03b09a7e4821e53c1398d6bc98fa139689434c175fecb7be9969d4
524 # haproxy.rollWorkload -- Add a checksum of the generated ConfigMap to the HAProxy Deployment.
526 # haproxy.replicas -- Set the number of HAProxy Pods to create.
529 # haproxy.serviceAccount.create -- If true, create a HAProxy ServiceAccount.
531 # haproxy.serviceAccount.annotations -- Annotations to add to the HAProxy ServiceAccount.
533 # haproxy.serviceAccount.name -- The name of the HAProxy ServiceAccount to use. If not set and create is true, a
534 # name is generated using the fullname template.
536 # haproxy.serviceAccount.automountToken -- Automount API credentials for the HAProxy ServiceAccount.
538 # haproxy.strategy -- Customize the [strategy](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/deployment-v1/)
539 # used to replace HAProxy Pods.
543 # maxUnavailable: 25%
544 # type: RollingUpdate
546 # haproxy.terminationGracePeriodSeconds -- Override HAProxy's terminationGracePeriodSeconds.
547 terminationGracePeriodSeconds: 60
548 # haproxy.podAnnotations -- Set annotations on HAProxy Pods.
550 # haproxy.podLabels -- Set labels on HAProxy Pods.
552 # haproxy.podPriorityClassName -- Set the priorityClassName on HAProxy Pods.
553 podPriorityClassName: ""
554 # haproxy.podSecurityContext -- Allows you to overwrite the default PodSecurityContext for HAProxy.
555 podSecurityContext: {}
558 # haproxy.securityContext -- Specify securityContext on HAProxy containers.
563 # readOnlyRootFilesystem: true
567 # haproxy.containerPorts -- Manually define HAProxy's containerPorts, overrides automated generation of containerPorts.
569 # HAProxy's Service configuration.
571 # haproxy.service.type -- Set type of HAProxy's Service.
573 # haproxy.service.annotations -- Set annotations on HAProxy's Service.
575 # haproxy.service.topologyKeys -- Specify the [topologyKeys](https://kubernetes.io/docs/concepts/services-networking/service-topology/#using-service-topology)
576 # field on HAProxy's Service spec.
578 # - "kubernetes.io/hostname"
579 # - "topology.kubernetes.io/zone"
580 # - "topology.kubernetes.io/region"
582 # haproxy.service.ports -- Manually set HAPRoxy's Service ports, overrides automated generation of Service ports.
584 # haproxy.service.externalTrafficPolicy -- Specify the [externalTrafficPolicy](https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip).
585 externalTrafficPolicy: ""
586 # haproxy.service.loadBalancerIP -- Specify the [loadBalancerIP](https://kubernetes.io/docs/concepts/services-networking/service/#loadbalancer).
588 # haproxy.service.ipFamilyPolicy -- Configure [IPv4/IPv6 dual-stack](https://kubernetes.io/docs/concepts/services-networking/dual-stack/).
590 # haproxy.service.ipFamilies -- Configure [IPv4/IPv6 dual-stack](https://kubernetes.io/docs/concepts/services-networking/dual-stack/).
592 # haproxy.existingConfigMap -- Use this existing ConfigMap for HAProxy's configuration instead of creating a new one.
593 # Additionally, haproxy.containerPorts and haproxy.service.ports should be specified based on your supplied
594 # configuration. If set, this parameter takes precedence over customConfig and the chart's default configs.
595 existingConfigMap: ""
596 # haproxy.customConfig -- Override HAProxy's default configs, if used **all** options need to be specified.
597 # This parameter supports using Helm templates to insert values dynamically. By default, this chart will parse
598 # Vector's configuration from customConfig to generate HAProxy's config, which can be overwritten with
599 # haproxy.customConfig.
601 # haproxy.extraVolumes -- Additional Volumes to use with HAProxy Pods.
603 # haproxy.extraVolumeMounts -- Additional Volume to mount into HAProxy Containers.
604 extraVolumeMounts: []
605 # haproxy.initContainers -- Init Containers to be added to the HAProxy Pods.
606 # This also supports template content, which will eventually be converted to yaml.
608 # haproxy.extraContainers -- Extra Containers to be added to the HAProxy Pods.
609 # This also supports template content, which will eventually be converted to yaml.
612 # haproxy.autoscaling.enabled -- Create a HorizontalPodAutoscaler for HAProxy.
614 # haproxy.autoscaling.external -- HAProxy is controlled by an external HorizontalPodAutoscaler.
616 # haproxy.autoscaling.minReplicas -- Minimum replicas for HAProxy's HPA.
618 # haproxy.autoscaling.maxReplicas -- Maximum replicas for HAProxy's HPA.
620 # haproxy.autoscaling.targetCPUUtilizationPercentage -- Target CPU utilization for HAProxy's HPA.
621 targetCPUUtilizationPercentage: 80
622 # haproxy.autoscaling.targetMemoryUtilizationPercentage -- (int) Target memory utilization for HAProxy's HPA.
623 targetMemoryUtilizationPercentage:
624 # haproxy.autoscaling.customMetric -- Target a custom metric for autoscaling.
633 # haproxy.resources -- Set HAProxy resource requests and limits.
642 # haproxy.livenessProbe -- Override default HAProxy liveness probe settings.
646 # haproxy.readinessProbe -- Override default HAProxy readiness probe settings.
650 # haproxy.nodeSelector -- Configure a [nodeSelector](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#nodeselector)
653 # haproxy.tolerations -- Configure HAProxy Pods to be scheduled on [tainted](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/)
656 # haproxy.affinity -- Configure [affinity](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity)
657 # rules for HAProxy Pods.
659# extraObjects -- Create extra manifests via values. Would be passed through `tpl` for templating.
664# name: vector-dashboards
666# grafana_dashboard: "1"
669# {{ .Files.Get "dashboards/vector.json" | fromJson | toJson }}