Skip to content

Commit 7249172

Browse files
agup006gitbook-bot
authored andcommitted
GitBook: [1.6] one page modified
1 parent c745f70 commit 7249172

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

installation/kubernetes.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,26 @@ If you are using Minikube for testing purposes, use the following alternative Da
8282
$ kubectl create -f https://raw.githubusercontent.com/fluent/fluent-bit-kubernetes-logging/master/output/elasticsearch/fluent-bit-ds-minikube.yaml
8383
```
8484

85+
## Installing with Helm Chart
86+
87+
[Helm](https://helm.sh) is a package manager for Kubernetes and allows you to quickly deploy application packages into your running cluster. Fluent Bit is distributed via a helm chart found in the Fluent Helm Charts repo: [https://github.com/fluent/helm-charts](https://github.com/fluent/helm-charts).
88+
89+
To add the Fluent Helm Charts repo use the following command
90+
91+
```text
92+
helm repo add fluent https://fluent.github.io/helm-charts
93+
```
94+
95+
To validate that the repo was added you can run `helm search repo fluent` to ensure the charts were added. The default chart can then be installed by running the following
96+
97+
```text
98+
helm install fluent-bit fluent/fluent-bit
99+
```
100+
101+
### Default Values
102+
103+
The default chart values include configuration to read container logs, with Docker parsing, systemd logs apply Kubernetes metadata enrichment and finally output to an Elasticsearch cluster. You can modify the values file included [https://github.com/fluent/helm-charts/blob/master/charts/fluent-bit/values.yaml](https://github.com/fluent/helm-charts/blob/master/charts/fluent-bit/values.yaml) to specify additional outputs, health checks, monitoring endpoints, or other configuration options.
104+
85105
## Details
86106

87107
The default configuration of Fluent Bit makes sure of the following:

0 commit comments

Comments
 (0)