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

Update fluentbit logs version to 3.2.4 #498

Merged
merged 1 commit into from
Jan 5, 2025
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
5 changes: 5 additions & 0 deletions logs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@

## Fluent-Bit

## v3.2.4/ 2025-1-5

* [UPGRADE] Upgrade Fluentbit version to v3.2.4
* [UPGRADE] Upgrade Fluentbit Helm chart dependency to 0.48.4

## v3.1.9 / 2024-10-10

* [UPGRADE] Upgrade Fluentbit version to v3.1.9 for CVE-2024-37371, CVE-2024-5535, CVE-2023-45853
Expand Down
4 changes: 2 additions & 2 deletions logs/fluent-bit/image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ COPY ./out_coralogix.go ./go.mod ./go.sum ./
RUN go mod vendor && \
go build -buildmode=c-shared -ldflags "-s -w" -mod=vendor -o out_coralogix.$TARGETARCH.so .

FROM fluent/fluent-bit:3.1.9
FROM fluent/fluent-bit:3.2.4
ARG TARGETARCH
LABEL Maintainer="Coralogix Inc. <[email protected]>"
LABEL Description="Special Fluent-Bit image for Coralogix integration" Vendor="Coralogix Inc." Version="3.1.9"
LABEL Description="Special Fluent-Bit image for Coralogix integration" Vendor="Coralogix Inc." Version="3.2.4"
COPY --from=builder /go/src/app/plugins.conf /fluent-bit/etc/
COPY --from=builder /go/src/app/out_coralogix.$TARGETARCH.so /fluent-bit/plugins/out_coralogix.so
COPY ./functions.lua /fluent-bit/etc/
2 changes: 1 addition & 1 deletion logs/fluent-bit/image/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v3.1.9
v3.2.4
6 changes: 3 additions & 3 deletions logs/fluent-bit/k8s-helm/http/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
apiVersion: v2
name: fluent-bit-http
description: Fluent-Bit Chart with HTTP output plugin
version: 3.1.9
appVersion: 3.1.9
version: 3.2.4
appVersion: 3.2.4
keywords:
- Fluent-Bit
- HTTP output plugin
dependencies:
- name: fluent-bit
version: "0.47.10"
version: "0.48.4"
repository: https://fluent.github.io/helm-charts
sources:
- https://github.com/fluent/fluent-bit/
Expand Down
2 changes: 1 addition & 1 deletion logs/fluent-bit/k8s-helm/http/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ fluent-bit:

image:
repository: coralogixrepo/coralogix-fluent-bit-multiarch
tag: v3.1.9
tag: v3.2.4

serviceMonitor:
enabled: true
Expand Down
2 changes: 1 addition & 1 deletion logs/fluent-bit/k8s-manifest/fluentbit-ds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
dnsPolicy: ClusterFirstWithHostNet
containers:
- name: fluent-bit
image: "coralogixrepo/coralogix-fluent-bit-multiarch:v3.1.9"
image: "coralogixrepo/coralogix-fluent-bit-multiarch:v3.2.4"
imagePullPolicy: Always
env:
- name: HOSTNAME
Expand Down
Loading