1# This file has been modified by Chainguard, Inc.
3# Copyright Chainguard, Inc. All Rights Reserved.
4# Chainguard, Inc. modifications are subject to the license
5# available at: https://www.chainguard.dev/legal/software-license-agreement
7# Copyright Broadcom, Inc. All Rights Reserved.
8# SPDX-License-Identifier: APACHE-2.0
10## @section Global parameters
11## Global Docker image parameters
12## Please, note that this will override the image parameters, including dependencies, configured to use the global value
13## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass
16## @param global.imageRegistry Global Docker image registry
17## @param global.imagePullSecrets Global Docker registry secret names as an array
18## @param global.defaultStorageClass Global default StorageClass for Persistent Volume(s)
19## @param global.storageClass DEPRECATED: use global.defaultStorageClass instead
25 ## - myRegistryKeySecretName
28 defaultStorageClass: ""
30 ## Security parameters
33 ## @param global.security.allowInsecureImages Allows skipping image verification
34 allowInsecureImages: false
35 ## Compatibility adaptations for Kubernetes platforms
38 ## Compatibility adaptations for Openshift
41 ## @param global.compatibility.openshift.adaptSecurityContext Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation)
43 adaptSecurityContext: auto
45## @section Common parameters
48## @param apiVersions Override Kubernetes API versions reported by .Capabilities
51## @param nameOverride String to partially override common.names.fullname
54## @param fullnameOverride String to fully override common.names.fullname
57## @param kubeVersion Force target Kubernetes version (using Helm capabilities if not set)
60## @param commonLabels Labels to add to all deployed objects (sub-charts are not considered)
63## @param commonAnnotations Annotations to add to all deployed objects
66## Enable diagnostic mode in the deployment
69 ## @param diagnosticMode.enabled Enable diagnostic mode (all probes will be disabled and the command will be overridden)
72 ## @param diagnosticMode.command Command to override all containers in the deployment
76 ## @param diagnosticMode.args Args to override all containers in the deployment
80## @section Fluent Bit parameters
83## Iamguarded Fluent Bit image
84## @param image.registry [default: REGISTRY_NAME] Fluent Bit image registry
85## @param image.repository [default: REPOSITORY_NAME/fluent-bit] Fluent Bit image repository
86## @skip image.tag Fluent Bit image tag (immutable tags are recommended)
87## @param image.digest Fluent Bit image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
88## @param image.pullPolicy image pull policy
89## @param image.pullSecrets Fluent Bit image pull secrets
90## @param image.debug Enable image debug mode
94 repository: chainguard-private/fluent-bit-iamguarded
97 ## Specify a imagePullPolicy
98 ## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images
100 pullPolicy: IfNotPresent
101 ## Optionally specify an array of imagePullSecrets.
102 ## Secrets must be manually created in the namespace.
103 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
106 ## - myRegistryKeySecretName
112## @section Fluent Bit daemonset configuration
113## Running as daemonset eases kubernetes pod monitoring and ensures its integrity
114## If daemonset is enabled, Fluent Bit deployment will be disabled
117 ## @param daemonset.enabled Use a daemonset instead of a deployment. `replicaCount` will not take effect.
120 ## Pod security context
121 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
122 ## @param daemonset.podSecurityContext.enabled Enable security context for daemonset pods
123 ## @param daemonset.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy
124 ## @param daemonset.podSecurityContext.sysctls Set kernel settings using the sysctl interface
125 ## @param daemonset.podSecurityContext.supplementalGroups Set filesystem extra groups
126 ## @param daemonset.podSecurityContext.fsGroup Group ID for daemonset containers filesystem
130 fsGroupChangePolicy: Always
132 supplementalGroups: []
135 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
136 ## @param daemonset.hostPaths.logs Path to the node logs dir
137 ## @param daemonset.hostPaths.containerLogs Path to the container logs dir
138 ## @param daemonset.hostPaths.machineId Path to the machine-id file
142 containerLogs: /var/lib/docker/containers
143 machineId: /etc/machine-id
144## @param hostNetwork Enable HOST Network
145## If hostNetwork true -> dnsPolicy is set to ClusterFirstWithHostNet
148## @param command Command for running the container (set to default if not set). Use array form
151## @param args Args for running the container (set to default if not set). Use array form
154## @param lifecycleHooks [object] Override default etcd container hooks
157## @param extraEnvVars Extra environment variables to be set on fluent-bit container
163## @param extraEnvVarsCM Name of existing ConfigMap containing extra env vars
166## @param extraEnvVarsSecret Name of existing Secret containing extra env vars
168extraEnvVarsSecret: ""
169## @param existingConfigMap Name of an existing ConfigMap with the Fluent Bit config file
172## @param automountServiceAccountToken Mount Service Account token in pod
174automountServiceAccountToken: true
175## @param hostAliases Deployment pod host aliases
176## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
179## @param replicaCount Number of Fluent Bit replicas
182## Configure extra options for container's liveness, readiness and startup probes
183## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes
184## @param livenessProbe.enabled Enable livenessProbe on nodes
185## @param livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
186## @param livenessProbe.periodSeconds Period seconds for livenessProbe
187## @param livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
188## @param livenessProbe.failureThreshold Failure threshold for livenessProbe
189## @param livenessProbe.successThreshold Success threshold for livenessProbe
194 initialDelaySeconds: 10
198## @param startupProbe.enabled Enable startupProbe on containers
199## @param startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
200## @param startupProbe.periodSeconds Period seconds for startupProbe
201## @param startupProbe.timeoutSeconds Timeout seconds for startupProbe
202## @param startupProbe.failureThreshold Failure threshold for startupProbe
203## @param startupProbe.successThreshold Success threshold for startupProbe
207 initialDelaySeconds: 10
212## @param readinessProbe.enabled Enable readinessProbe
213## @param readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
214## @param readinessProbe.periodSeconds Period seconds for readinessProbe
215## @param readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
216## @param readinessProbe.failureThreshold Failure threshold for readinessProbe
217## @param readinessProbe.successThreshold Success threshold for readinessProbe
221 initialDelaySeconds: 10
226## @param customLivenessProbe Custom livenessProbe that overrides the default one
228customLivenessProbe: {}
229## @param customStartupProbe [object] Override default startup probe
231customStartupProbe: {}
232## @param customReadinessProbe [object] Override default readiness probe
234customReadinessProbe: {}
235## Fluent Bit pods' resource requests and limits
236## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
237## Minimum memory for development is 4GB and 2 CPU cores
238## Minimum memory for production is 8GB and 4 CPU cores
239## ref: http://docs.datastax.com/en/archived/fluent-bit/2.0/fluent-bit/architecture/architecturePlanningHardware_c.html
241## We usually recommend not to specify default resources and to leave this as a conscious
242## choice for the user. This also increases chances charts run on environments with little
243## resources, such as Minikube. If you do want to specify resources, uncomment the following
244## lines, adjust them as necessary, and remove the curly braces after 'resources:'.
245## @param resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if resources is set (resources is recommended for production).
247resourcesPreset: "nano"
248## @param resources Set container requests and limits for different resources like CPU or memory (essential for production workloads)
259## @param extraVolumeMounts Optionally specify extra list of additional volumeMounts for fluent-bit container
262## Container ports to expose
263## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport
265 ## @param containerPorts.http Port for HTTP port
268## @param extraContainerPorts Optionally specify extra list of additional ports for fluent-bit containers
270## extraContainerPorts:
272## containerPort: 24224
274extraContainerPorts: []
275## Fluent Bit service parameters
278 ## @param service.type Fluent Bit service type
282 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport
284 ## @param service.ports.http Port for HTTP port
287 ## Node ports to expose
288 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport
290 ## @param service.nodePorts.http Node port for HTTP port
293 ## @param service.extraPorts Extra ports to expose in the service (normally used with the `sidecar` value)
296 ## @param service.loadBalancerIP LoadBalancerIP if service type is `LoadBalancer`
297 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer
300 ## @param service.loadBalancerSourceRanges Service Load Balancer sources
301 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
303 ## loadBalancerSourceRanges:
306 loadBalancerSourceRanges: []
307 ## @param service.clusterIP Service Cluster IP
312 ## @param service.externalTrafficPolicy Service external traffic policy
313 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
315 externalTrafficPolicy: Cluster
316 ## @param service.annotations Provide any additional annotations which may be required.
317 ## This can be used to set the LoadBalancer service type to internal only.
318 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer
321 ## @param service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
322 ## If "ClientIP", consecutive client requests will be directed to the same Pod
323 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
325 sessionAffinity: None
326 ## @param service.sessionAffinityConfig Additional settings for the sessionAffinity
327 ## sessionAffinityConfig:
329 ## timeoutSeconds: 300
331 sessionAffinityConfig: {}
333## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/
336 ## @param networkPolicy.enabled Specifies whether a NetworkPolicy should be created
339 ## @param networkPolicy.allowExternal Don't require server label for connections
340 ## The Policy model to apply. When set to false, only pods with the correct
341 ## server label will have network access to the ports server is listening
342 ## on. When true, server will accept connections from any source
343 ## (with the correct destination port).
346 ## @param networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations.
348 allowExternalEgress: true
349 ## @param networkPolicy.kubeAPIServerPorts [array] List of possible endpoints to kube-apiserver (limit to your cluster settings to increase security)
351 kubeAPIServerPorts: [443, 6443, 8443]
352 ## @param networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy
362 ## - matchExpressions:
368 ## @param networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy
378 ## - matchExpressions:
385 ## @param networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces
386 ## @param networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces
388 ingressNSMatchLabels: {}
389 ingressNSPodMatchLabels: {}
390## Fluent Bit serviceAccount parameters
393 ## @param serviceAccount.create Enables ServiceAccount
396 ## @param serviceAccount.name ServiceAccount name
399 ## @param serviceAccount.annotations Annotations to add to all deployed objects
402 ## @param serviceAccount.automountServiceAccountToken Automount API credentials for a service account.
404 automountServiceAccountToken: false
405## Pod security context
406## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
407## @param podSecurityContext.enabled Enabled Fluent Bit pods' Security Context
408## @param podSecurityContext.fsGroupChangePolicy Set filesystem group change policy
409## @param podSecurityContext.sysctls Set kernel settings using the sysctl interface
410## @param podSecurityContext.supplementalGroups Set filesystem extra groups
411## @param podSecurityContext.fsGroup Set Fluent Bit pod's Security Context fsGroup
415 fsGroupChangePolicy: Always
417 supplementalGroups: []
419## Configure Container Security Context (only main container)
420## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
421## @param containerSecurityContext.enabled Enabled Fluent Bit containers' Security Context
422## @param containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container
423## @param containerSecurityContext.runAsUser Set Fluent Bit containers' Security Context runAsUser
424## @param containerSecurityContext.runAsGroup Set Fluent Bit containers' Security Context runAsGroup
425## @param containerSecurityContext.runAsNonRoot Set Fluent Bit container's Security Context runAsNonRoot
426## @param containerSecurityContext.readOnlyRootFilesystem Set Fluent Bit container's Security Context runAsNonRoot
427## @param containerSecurityContext.privileged Set primary container's Security Context privileged
428## @param containerSecurityContext.allowPrivilegeEscalation Set primary container's Security Context allowPrivilegeEscalation
429## @param containerSecurityContext.capabilities.drop List of capabilities to be dropped
430## @param containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile
432containerSecurityContext:
439 allowPrivilegeEscalation: false
440 readOnlyRootFilesystem: true
444 type: "RuntimeDefault"
445## @param podAnnotations Additional pod annotations
446## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
449## @param podLabels Additional pod labels
450## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
453## @param podAffinityPreset Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
454## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
457## @param podAntiAffinityPreset Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
458## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
460podAntiAffinityPreset: soft
461## Node affinity preset
462## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
465 ## @param nodeAffinityPreset.type Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
468 ## @param nodeAffinityPreset.key Node label key to match. Ignored if `affinity` is set
471 ## @param nodeAffinityPreset.values Node label values to match. Ignored if `affinity` is set
478## @param priorityClassName Server priorityClassName
479## Ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/
482## @param affinity Affinity for pod assignment
483## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
484## NOTE: podAffinityPreset, podAntiAffinityPreset, and nodeAffinityPreset will be ignored when it's set
487## @param nodeSelector Node labels for pod assignment
488## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/
491## @param tolerations Tolerations for pod assignment
492## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
495## @param topologySpreadConstraints Topology Spread Constraints for pod assignment
496## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
497## The value is evaluated as a template
499topologySpreadConstraints: []
500## @param schedulerName Alternative scheduler
501## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
504## @param updateStrategy.type Fluent Bit deployment strategy type
505## @param updateStrategy.rollingUpdate Fluent Bit deployment rolling update configuration parameters
506## ref: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#strategy
511## @param extraVolumes Optionally specify extra list of additional volumes for fluent-bit container
514## @param initContainers Add additional init containers to the fluent-bit pods
517## @param sidecars Add additional sidecar containers to the fluent-bit pods
520## @section Fluent Bit configuration
523 ## @param config.flush Interval to flush output (seconds)
526 ## @param config.logLevel Diagnostic level (error/warning/info/debug/trace)
529 ## @param config.service [string] Defines the global behaviour of the Fluent Bit engine.
533 Flush {{ .Values.config.flush }}
535 Log_Level {{ .Values.config.logLevel }}
539 HTTP_Port {{ .Values.containerPorts.http }}
540 Parsers_File /opt/iamguarded/fluent-bit/conf/parsers.conf
541 Parsers_File /opt/iamguarded/fluent-bit/conf/custom_parsers.conf
542 ## @param config.inputs [string] Defines the source from where Fluent Bit can collect data
543 ## https://docs.fluentbit.io/manual/pipeline/inputs
548 ## @param config.filters [string] Set of plugins that can be used to filter, modify, or enrich log data that is processed by Fluent Bit.
549 ## https://docs.fluentbit.io/manual/pipeline/filters
557 ## K8S-Logging.Parser On
558 ## K8S-Logging.Exclude On
561 ## @param config.outputs [string] Outputs to send the collected data to different destinations
562 ## https://docs.fluentbit.io/manual/pipeline/outputs
568 ## @param config.upstream This configuration is deprecated, please use `extraFiles` instead.
569 ## https://docs.fluentbit.io/manual/administration/configuring-fluent-bit/classic-mode/upstream-servers
572 ## @param config.customParsers [string] Custom parsers
573 ## https://docs.fluentbit.io/manual/pipeline/parsers
581 Time_Format %Y-%m-%dT%H:%M:%S.%L
582 ## @param config.extraFiles Extra config files
583 ## This allows adding more files with arbitary filenames to /fluent-bit/etc by providing key/value pairs.
584 ## The key becomes the filename, the value becomes the file content.
588## Ref: https://kubernetes.io/docs/admin/authorization/rbac/
589## @param rbac.create Create Role and RoleBinding
590## @param rbac.nodeAccess RBAC node access
595 ## @param rbac.rules Custom RBAC rules to set
607## @section Autoscaling
611 ## @param autoscaling.vpa.enabled Enable VPA
614 ## @param autoscaling.vpa.annotations Annotations for VPA resource
617 ## @param autoscaling.vpa.controlledResources VPA List of resources that the vertical pod autoscaler can control. Defaults to cpu and memory
619 controlledResources: []
620 ## @param autoscaling.vpa.maxAllowed VPA Max allowed resources for the pod
624 ## @param autoscaling.vpa.minAllowed VPA Min allowed resources for the pod
628 ## @section VPA update policy
631 ## @param autoscaling.vpa.updatePolicy.updateMode Autoscaling update policy Specifies whether recommended updates are applied when a Pod is started and whether recommended updates are applied during the life of a Pod
632 ## Possible values are "Off", "Initial", "Recreate", and "Auto".
636 ## @param autoscaling.hpa.annotations Annotations for HPA resource
639 ## @param autoscaling.hpa.enabled Enable HPA
642 ## @param autoscaling.hpa.minReplicas Min replicas
645 ## @param autoscaling.hpa.maxReplicas Max replicas
648 ## @param autoscaling.hpa.targetCPUUtilizationPercentage Target CPU utilization percentage
650 targetCPUUtilizationPercentage: 75
651 ## @param autoscaling.hpa.targetMemoryUtilizationPercentage Target Memory utilization percentage
653 targetMemoryUtilizationPercentage: ""
654 ## @param autoscaling.hpa.customRules Custom rules
657 ## @param autoscaling.hpa.behavior HPA Behavior
660## Configure the ingress resource that allows you to access the
661## fluent-bit Console. Set up the URL
662## ref: https://kubernetes.io/docs/concepts/services-networking/ingress/
665 ## @param ingress.enabled Enable ingress controller resource for fluentBit Console
668 ## @param ingress.apiVersion Force Ingress API version (automatically detected if not set)
671 ## @param ingress.ingressClassName IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+)
672 ## This is supported in Kubernetes 1.18+ and required if you have more than one IngressClass marked as the default for your cluster.
673 ## ref: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/
676 ## @param ingress.hostname Default host for the ingress resource
678 hostname: fluent-bit.local
679 ## @param ingress.path The Path to fluentBit®. You may need to set this to '/*' in order to use this with ALB ingress controllers.
682 ## @param ingress.pathType Ingress path type
684 pathType: ImplementationSpecific
685 ## @param ingress.annotations Additional annotations for the Ingress resource. To enable certificate autogeneration, place here your cert-manager annotations.
686 ## For a full list of possible ingress annotations, please see
687 ## ref: https://github.com/kubernetes/ingress-nginx/blob/main/docs/user-guide/nginx-configuration/annotations.md
688 ## Use this parameter to set the required annotations for cert-manager, see
689 ## ref: https://cert-manager.io/docs/usage/ingress/#supported-annotations
693 ## kubernetes.io/ingress.class: nginx
694 ## cert-manager.io/cluster-issuer: cluster-issuer-name
697 ## @param ingress.tls Enable TLS configuration for the hostname defined at `ingress.hostname` parameter
698 ## TLS certificates will be retrieved from a TLS secret with name: `{{- printf "%s-tls" .Values.ingress.hostname }}`
700 ## - Use the `ingress.secrets` parameter to create this TLS secret
701 ## - Rely on cert-manager to create it by setting the corresponding annotations
702 ## - Rely on Helm to create self-signed certificates by setting `ingress.selfSigned=true`
705 ## @param ingress.selfSigned Create a TLS secret for this ingress record using self-signed certificates generated by Helm
708 ## @param ingress.extraHosts The list of additional hostnames to be covered with this ingress record.
709 ## Most likely the hostname above will be enough, but in the event more hosts are needed, this is an array
712 ## - name: fluent-bit.local
716 ## @param ingress.extraPaths Any additional paths that may need to be added to the ingress under the main host
717 ## For example: The ALB ingress controller requires a special rule for handling SSL redirection.
721 ## serviceName: ssl-redirect
722 ## servicePort: use-annotation
725 ## @param ingress.extraTls The tls configuration for additional hostnames to be covered with this ingress record.
726 ## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls
730 ## - fluent-bit.local
731 ## secretName: fluent-bit.local-tls
734 ## @param ingress.secrets If you're providing your own certificates, please use this to add the certificates as secrets
735 ## key and certificate are expected in PEM format
736 ## name should line up with a secretName set further up
738 ## If it is not set and you're using cert-manager, this is unneeded, as it will create a secret for you with valid certificates
739 ## If it is not set and you're NOT using cert-manager either, self-signed certificates will be created valid for 365 days
740 ## It is also possible to create and manage the certificates outside of this helm chart
741 ## Please see README.md for more information
745 ## - name: fluent-bit.local-tls
750 ## @param ingress.extraRules Additional rules to be covered with this ingress record
751 ## ref: https://kubernetes.io/docs/concepts/services-networking/ingress/#ingress-rules
754 ## - host: example.local
764## Fluent Bit Pod Disruption Budget
765## ref: https://kubernetes.io/docs/concepts/workloads/pods/disruptions/
766## @param pdb.create Deploy a PodDisruptionBudget object for Fluent Bit deployment
767## @param pdb.minAvailable Minimum available Fluent Bit replicas (expressed in percentage)
768## @param pdb.maxUnavailable Maximum unavailable Fluent Bit replicas (expressed in percentage)
773 maxUnavailable: "50%"
777 ## @param metrics.enabled Enable the export of Prometheus metrics
780 ## Prometheus Operator ServiceMonitor configuration
783 ## @param metrics.serviceMonitor.enabled if `true`, creates a Prometheus Operator ServiceMonitor (also requires `metrics.enabled` to be `true`)
786 ## @param metrics.serviceMonitor.namespace Namespace in which Prometheus is running
789 ## @param metrics.serviceMonitor.annotations [object] Additional custom annotations for the ServiceMonitor
792 prometheus.io/scrape: "true"
793 prometheus.io/port: "{{ .Values.service.ports.http }}"
794 prometheus.io/path: "/metrics"
795 ## @param metrics.serviceMonitor.labels Extra labels for the ServiceMonitor
798 ## @param metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in Prometheus
801 ## @param metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels
804 ## @param metrics.serviceMonitor.interval Interval at which metrics should be scraped.
805 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
810 ## @param metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended
811 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
813 ## scrapeTimeout: 10s
816 ## @param metrics.serviceMonitor.metricRelabelings Specify additional relabeling of metrics
818 metricRelabelings: []
819 ## @param metrics.serviceMonitor.relabelings Specify general relabeling
822 ## @param metrics.serviceMonitor.selector Prometheus instance selector labels
824 ## prometheus: my-prometheus
827## @param extraDeploy Array of extra objects to deploy with the release