mirror of
https://github.com/helm/charts.git
synced 2026-08-22 13:57:51 +00:00
* Updating fluent-bit to 0.13.0. Add section for parsers * Trim trailing whitespace * Increment minor version of chart due to breaking changes in values.yaml
Fluent-Bit Chart
Fluent Bit is an open source and multi-platform Log Forwarder.
Chart Details
This chart will do the following:
- Install a configmap for Fluent Bit
- Install a daemonset that provisions Fluent Bit [per-host architecture]
Installing the Chart
To install the chart with the release name my-release:
$ helm install --name my-release stable/fluent-bit
When installing this chart on Minikube, it's required to specify that so the DaemonSet will be able to mount the log files properly, make sure to append the --set on_minikube=true option at the end of the helm command, e.g:
$ helm install --name my-release stable/fluent-bit --set on_minikube=true
Configuration
The following tables lists the configurable parameters of the Fluent-Bit chart and the default values.
| Parameter | Description | Default |
|---|---|---|
| Backend Selection | ||
backend.type |
Set the backend to which Fluent-Bit should flush the information it gathers | forward |
| Forward Backend | ||
backend.forward.host |
Target host where Fluent-Bit or Fluentd are listening for Forward messages | fluentd |
backend.forward.port |
TCP Port of the target service | 24284 |
| ElasticSearch Backend | ||
backend.es.host |
IP address or hostname of the target Elasticsearch instance | elasticsearch |
backend.es.port |
TCP port of the target Elasticsearch instance. | 9200 |
backend.es.index |
Elastic Index name | kubernetes_cluster |
backend.es.type |
Elastic Type name | flb_type |
backend.es.logstash_prefix |
Index Prefix. If Logstash_Prefix is equals to 'mydata' your index will become 'mydata-YYYY.MM.DD'. | kubernetes_cluster |
backend.es.http_user |
Optional username credential for Elastic X-Pack access. | `` |
backend.es.http_passwd: |
Password for user defined in HTTP_User. | `` |
backend.es.tls |
Enable or disable TLS support | off |
backend.es.tls_verify |
Force certificate validation | on |
backend.es.tls_ca |
TLS CA certificate for the Elastic instance (in PEM format). Specify if tls: on. | `` |
backend.es.tls_debug |
Set TLS debug verbosity level. It accept the following values: 0-4 | 1 |
| HTTP Backend | ||
backend.http.host |
IP address or hostname of the target HTTP Server | 127.0.0.1 |
backend.http.port |
TCP port of the target HTTP Server | 80 |
backend.http.uri |
Specify an optional HTTP URI for the target web server, e.g: /something | "/" |
backend.http.format |
Specify the data format to be used in the HTTP request body, by default it uses msgpack, optionally it can be set to json. | msgpack |
| Parsers | ||
parsers.regex |
List of regex parsers | NULL |
parsers.json |
List of json parsers | NULL |
| General | ||
annotations |
Optional deamonset set annotations | NULL |
podAnnotations |
Optional pod annotations | NULL |
existingConfigMap |
ConfigMap override | `` |
extraVolumeMounts |
Mount an extra volume, required to mount ssl certificates when elasticsearch has tls enabled | |
extraVolume |
Extra volume | |
filter.kubeURL |
Optional custom configmaps | https://kubernetes.default.svc:443 |
filter.kubeCAFile |
Optional custom configmaps | /var/run/secrets/kubernetes.io/serviceaccount/ca.crt |
filter.kubeTokenFile |
Optional custom configmaps | /var/run/secrets/kubernetes.io/serviceaccount/token |
filter.kubeTag |
Optional top-level tag for matching in filter | kube |
image.fluent_bit.repository |
Image | fluent/fluent-bit |
image.fluent_bit.tag |
Image tag | 0.13.0 |
image.pullPolicy |
Image pull policy | Always |
rbac.create |
Specifies whether RBAC resources should be created. | true |
serviceAccount.create |
Specifies whether a ServiceAccount should be created. | true |
serviceAccount.name |
The name of the ServiceAccount to use. | NULL |
resources.limits.cpu |
CPU limit | 100m |
resources.limits.memory |
Memory limit | 500Mi |
resources.requests.cpu |
CPU request | 100m |
resources.requests.memory |
Memory request | 200Mi |
tolerations |
Optional daemonset tolerations | NULL |
nodeSelector |
Node labels for fluent-bit pod assignment | NULL |
Specify each parameter using the --set key=value[,key=value] argument to helm install.
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
$ helm install --name my-release -f values.yaml stable/fluent-bit
Tip
: You can use the default values.yaml