Skip to content

Commit 3f2904e

Browse files
authored
Bump fluentbit to 2.1.9 (#921)
* Bump fluentbit to 2.1.9 Signed-off-by: dehaocheng <[email protected]> * modify changelog Signed-off-by: dehaocheng <[email protected]> --------- Signed-off-by: dehaocheng <[email protected]>
1 parent d302995 commit 3f2904e

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

.github/workflows/build-fb-image.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ on:
1313
- "pkg/filenotify/**"
1414

1515
env:
16-
FB_IMG: 'kubesphere/fluent-bit:v2.1.8'
17-
FB_IMG_DEBUG: 'kubesphere/fluent-bit:v2.1.8-debug'
16+
FB_IMG: 'kubesphere/fluent-bit:v2.1.9'
17+
FB_IMG_DEBUG: 'kubesphere/fluent-bit:v2.1.9-debug'
1818

1919
jobs:
2020
build:

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
- Remove Duplicate Cluster parsers in Fluent-bit config. (#853)
1717
- Add option to configure hostNetwork daemonset propertie (#863)
1818
- Helm chart generation of ClusterOutput for loki (#865) (#906)
19-
- Bump fluentbit to 2.1.8. (#867)
2019
- Add SuppressTypeName option to helm, as newer ES needs it for bulk operation (#869)
2120
- Adjusting the parameters of fluentbit (#880) @wenchajun
2221
- Add an extras section to the chart allowing new and less used features of the CRD to be used from the chart (#889)
2322
- Add ImagePullSecret for fluentd (#891)
2423
- Add compress in fluentbit output es (#899)
2524
- Expose ports on collector statefulset (#917)
25+
- Bump fluentbit to 2.1.9 (#921)
2626
- build(deps): Bump github.com/onsi/gomega from 1.27.8 to 1.27.10 (#844)
2727
- build(deps): Bump k8s.io/apimachinery from 0.27.3 to 0.27.4 (#847)
2828
- build(deps): Bump helm/kind-action from 1.7.0 to 1.8.0 (#859)

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
VERSION?=$(shell cat VERSION | tr -d " \t\n\r")
22
# Image URL to use all building/pushing image targets
3-
FB_IMG ?= kubesphere/fluent-bit:v2.1.8
4-
FB_IMG_DEBUG ?= kubesphere/fluent-bit:v2.1.8-debug
3+
FB_IMG ?= kubesphere/fluent-bit:v2.1.9
4+
FB_IMG_DEBUG ?= kubesphere/fluent-bit:v2.1.9-debug
55
FD_IMG ?= kubesphere/fluentd:v1.15.3
66
FO_IMG ?= kubesphere/fluent-operator:$(VERSION)
77
FD_IMG_BASE ?= kubesphere/fluentd:v1.15.3-arm64-base

charts/fluent-operator/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ fluentbit:
7171
enable: true
7272
image:
7373
repository: "kubesphere/fluent-bit"
74-
tag: "v2.1.8"
74+
tag: "v2.1.9"
7575
# fluentbit resources. If you do want to specify resources, adjust them as necessary
7676
# You can adjust it based on the log volume.
7777
resources:

cmd/fluent-watcher/fluentbit/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ WORKDIR /code
66
RUN echo $(ls -al /code)
77
RUN CGO_ENABLED=0 go build -ldflags '-w -s' -o /fluent-bit/fluent-bit /code/cmd/fluent-watcher/fluentbit/main.go
88

9-
FROM fluent/fluent-bit:2.1.8
9+
FROM fluent/fluent-bit:2.1.9
1010
LABEL Description="Fluent Bit docker image" Vendor="Fluent" Version="1.0"
1111

1212
COPY conf/fluent-bit.conf conf/parsers.conf /fluent-bit/etc/

cmd/fluent-watcher/fluentbit/Dockerfile.debug

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ WORKDIR /code
66
RUN echo $(ls -al /code)
77
RUN CGO_ENABLED=0 go build -ldflags '-w -s' -o /fluent-bit/fluent-bit /code/cmd/fluent-watcher/fluentbit/main.go
88

9-
FROM fluent/fluent-bit:2.1.8-debug
9+
FROM fluent/fluent-bit:2.1.9-debug
1010
LABEL Description="Fluent Bit docker image" Vendor="Fluent" Version="1.0"
1111

1212
COPY conf/fluent-bit.conf conf/parsers.conf /fluent-bit/etc/

manifests/kubeedge/fluentbit-fluentbit-edge.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
labels:
77
app.kubernetes.io/name: fluent-bit
88
spec:
9-
image: kubesphere/fluent-bit:v2.1.8
9+
image: kubesphere/fluent-bit:v2.1.9
1010
positionDB:
1111
hostPath:
1212
path: /var/lib/fluent-bit/

manifests/logging-stack/fluentbit-fluentBit.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
labels:
77
app.kubernetes.io/name: fluent-bit
88
spec:
9-
image: kubesphere/fluent-bit:v2.1.8
9+
image: kubesphere/fluent-bit:v2.1.9
1010
positionDB:
1111
hostPath:
1212
path: /var/lib/fluent-bit/

manifests/quick-start/fluentbit.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
labels:
77
app.kubernetes.io/name: fluent-bit
88
spec:
9-
image: kubesphere/fluent-bit:v2.1.8
9+
image: kubesphere/fluent-bit:v2.1.9
1010
fluentBitConfigName: fluent-bit-config
1111

1212
---

manifests/regex-parser/fluentbit-fluentBit.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ metadata:
66
labels:
77
app.kubernetes.io/name: fluent-bit
88
spec:
9-
image: kubesphere/fluent-bit:v2.1.8
9+
image: kubesphere/fluent-bit:v2.1.9
1010
fluentBitConfigName: fluent-bit-config

0 commit comments

Comments
 (0)