Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump fluent-bit chart version and add example values for syslog #4012

Merged
merged 3 commits into from
Apr 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions changelog.d/5-internal/fluent-bit
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Upgraded fluent-bit chart to version 0.46.2
Added example values for fluent-bit helm chart for output to syslog server
2 changes: 1 addition & 1 deletion charts/fluent-bit/requirements.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dependencies:
- name: fluent-bit
version: 0.19.6
version: 0.46.2
repository: https://fluent.github.io/helm-charts
18 changes: 18 additions & 0 deletions charts/fluent-bit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,24 @@ fluent-bit:
Retry_Limit False
Trace_Error On
Replace_Dots On
# syslog output reference - https://docs.fluentbit.io/manual/pipeline/outputs/syslog
# Uncomment this section to enable syslog output
# [OUTPUT]
# name syslog
# match *
# host syslog.yourserver.com
# port 514
# mode udp
# syslog_format rfc5424
# syslog_maxsize 2048
# syslog_message_key message
# syslog_hostname_key hostname
# syslog_appname_key appname
# # syslog_severity_key severity
# # syslog_facility_key facility
# # syslog_procid_key procid
# # syslog_msgid_key msgid
# # syslog_sd_key sd
## https://docs.fluentbit.io/manual/pipeline/parsers
customParsers: |
[PARSER]
Expand Down
Loading