fluent-bit-kubernetes-logging icon indicating copy to clipboard operation
fluent-bit-kubernetes-logging copied to clipboard

Fluent Bit Kubernetes Daemonset

Results 47 fluent-bit-kubernetes-logging issues
Sort by recently updated
recently updated
newest added
trafficstars

I've gone through the PRs filed since I participated in early yaml work here, and unsurprisingly the duplication is a maintenance problem. I think Kustomize is a good fit for...

1. Added a fluent-bit-Daemonset YAML file(new API version and selectors) which works in kubernetes cluster v1.16 and above. 2. Added kubectl create command for that in README.md file. 3. Removed...

Remove a duplicate line.

I noticed that there are notes about changing the parser to cri if you are using containerd or cri-o. but there is not an example manifest for it (daemonset, etc)...

According to kubectl [changelog for 1.15.0](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.16.md#changelog-since-v1150): The following APIs are no longer served by default: * All resources under `apps/v1beta1` and `apps/v1beta2` - use `apps/v1` instead * `daemonsets`, `deployments`, `replicasets`...

$ kubectl create namespace logging $ kubectl create -f https://raw.githubusercontent.com/fluent/fluent-bit-kubernetes-logging/master/fluent-bit-service-account.yaml $ kubectl create -f https://raw.githubusercontent.com/fluent/fluent-bit-kubernetes-logging/master/fluent-bit-role.yaml $ kubectl create -f https://raw.githubusercontent.com/fluent/fluent-bit-kubernetes-logging/master/fluent-bit-role-binding.yaml $ kubectl create -f https://raw.githubusercontent.com/fluent/fluent-bit-kubernetes-logging/0.13-dev/output/elasticsearch/fluent-bit-configmap.yaml After this getting error /fluent-bit/bin/fluent-bit:...

``` apiVersion: v1 kind: ConfigMap metadata: name: fluent-bit-config namespace: logging labels: k8s-app: fluent-bit data: # Configuration files: server, input, filters and output # ====================================================== fluent-bit.conf: | [SERVICE] Flush 1 Log_Level...

为了实现不同的container日志存放在不同的topic上

I have a daemonset of fluent-bit v1.6 pods running in three different (EKS) Kubernetes clusters. For historical reasons, I have a cronjob to restart them every 6 hours, and after...

I noticed copy-paste in README file: 'Fluent Bit to Elasticsearch on Minikube' occurs twice. It seems that Kafka-specific version should go there.