Skip to content

Commit

Permalink
Parametering few more plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
Harsh Vora authored and Harsh Vora committed Jul 12, 2024
1 parent 34a7019 commit 09168bb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ metadata:
fluentbit.fluent.io/enabled: "true"
fluentbit.fluent.io/component: logging
spec:
match: kube.*
match: {{ .Values.fluentbit.filter.containerd.match }}
filters:
- lua:
script:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ metadata:
fluentbit.fluent.io/enabled: "true"
fluentbit.fluent.io/component: logging
spec:
match: kube.*
match: {{ .Values.fluentbit.filter.kubernetes.match }}
filters:
- kubernetes:
kubeURL: https://kubernetes.default.svc:443
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ metadata:
fluentbit.fluent.io/enabled: "true"
fluentbit.fluent.io/component: logging
spec:
match: kube.*
match: {{ .Values.fluentbit.filter.multiline.match }}
filters:
- multiline:
keyContent: {{ .Values.fluentbit.filter.multiline.keyContent | quote }}
Expand Down
3 changes: 3 additions & 0 deletions charts/fluent-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,7 @@ fluentbit:
multiline:
enable: false
keyContent: log
match: "kube.*"
# emitterMemBufLimit 120 (MB)
emitterMemBufLimit: 120
parsers:
Expand All @@ -357,11 +358,13 @@ fluentbit:
enable: true
labels: false
annotations: false
match: "kube.*"
containerd:
# This is customized lua containerd log format converter, you can refer here:
# https://github.com/fluent/fluent-operator/blob/master/charts/fluent-operator/templates/fluentbit-clusterfilter-containerd.yaml
# https://github.com/fluent/fluent-operator/blob/master/charts/fluent-operator/templates/fluentbit-containerd-config.yaml
enable: true
match: "kube.*"
systemd:
enable: true

Expand Down

0 comments on commit 09168bb

Please sign in to comment.