You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Fluent Bit](http://fluentbit.io)must be deployed as a DaemonSet, so on that way it will be available on every node of your Kubernetes cluster. To get started run the following commands to create the namespace, service account and role setup:
34
+
[Fluent Bit](http://fluentbit.io)should be deployed as a DaemonSet, so on that way it will be available on every node of your Kubernetes cluster.
The default configmap assumes that dockershim is utilized for the cluster. If a CRI runtime, such as containerd or CRI-O, is being utilized, the [CRI parser](https://github.com/fluent/fluent-bit/blob/master/conf/parsers.conf#L106-L112) should be utilized. More specifically, change the `Parser` described in `input-kubernetes.conf` from docker to cri.
36
+
The recommended way to deploy Fluent Bit is with the official Helm Chart: https://github.com/fluent/helm-chart
61
37
62
38
### Note for OpenShift
63
39
64
-
If you are using Red Hat OpenShift you will also need to run the following
40
+
If you are using Red Hat OpenShift you will also need to set up security context constraints (SCC):
For Kubernetes versions older than v1.16, the DaemonSet resource is not available on `apps/v1` , the resource is available on `apiVersion: extensions/v1beta1` . Our current Daemonset Yaml files uses the new `apiVersion`.
73
-
74
-
If you are using and older Kubernetes version, manually grab a copy of your Daemonset Yaml file and replace the value of `apiVersion` from:
75
-
76
-
```yaml
77
-
apiVersion: apps/v1
78
-
```
79
-
80
-
to
81
-
82
-
```yaml
83
-
apiVersion: extensions/v1beta1
84
-
```
85
-
86
-
You can read more about this deprecation on Kubernetes v1.14 Changelog here:
[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).
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
0 commit comments