Skip to content

Commit cc870c4

Browse files
authored
Merge pull request #561 from wenchajun/wenchajun/release-2.0.1
release 2.0.1
2 parents 3c75d3d + 6b46ade commit cc870c4

27 files changed

+78
-60
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
- "pkg/filenotify/**"
1414

1515
env:
16-
FB_IMG: 'kubesphere/fluent-bit:v2.0.8'
16+
FB_IMG: 'kubesphere/fluent-bit:v2.0.9'
1717

1818
jobs:
1919
build:

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ on:
1313
- "pkg/filenotify/**"
1414

1515
env:
16-
FD_IMG: 'kubesphere/fluentd:v1.14.6'
16+
FD_IMG: 'kubesphere/fluentd:v1.15.3'
1717
ARCH: '-arm64'
18-
FD_IMG_BASE: 'kubesphere/fluentd:v1.14.6-arm64-base'
18+
FD_IMG_BASE: 'kubesphere/fluentd:v1.15.3-arm64-base'
1919

2020
jobs:
2121
build-amd64:

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 2.0.1 / 2023-02-08
2+
### ENHANCEMENT
3+
- Upgrade Fluentd to v1.15.3 (#556)
4+
- Upgrade Fluentbit to v2.0.9 (#557)
5+
6+
### BUGFIX
7+
- Fix: Fix the bug of adding `label` (#548)
8+
19
## 2.0.0 / 2023-02-03
210
### Features
311
- Feat: Support adding annotations to the fluent-operator deployment (#467)

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
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.0.8
4-
FD_IMG ?= kubesphere/fluentd:v1.14.6
3+
FB_IMG ?= kubesphere/fluent-bit:v2.0.9
4+
FD_IMG ?= kubesphere/fluentd:v1.15.3
55
FO_IMG ?= kubesphere/fluent-operator:$(VERSION)
6-
FD_IMG_BASE ?= kubesphere/fluentd:v1.14.6-arm64-base
6+
FD_IMG_BASE ?= kubesphere/fluentd:v1.15.3-arm64-base
77

88
ARCH ?= arm64
99

RELEASE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ This page describes the release process and the currently planned schedule for u
3232
| v1.6.1 | 2022-10-31 | Elon Cheng (GitHub: @wenchajun) |
3333
| v1.7.0 | 2022-11-23 | Elon Cheng (GitHub: @wenchajun) |
3434
| v2.0.0 | 2023-02-03 | Elon Cheng (GitHub: @wenchajun) |
35+
| v2.0.1 | 2023-02-08 | Elon Cheng (GitHub: @wenchajun) |
3536

3637
# How to cut a new release
3738

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v2.0.0
1+
v2.0.1

charts/fluent-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ description: A Helm chart for Kubernetes
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 2.0.0
18+
version: 2.0.2
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
23-
appVersion: 2.0.0
23+
appVersion: 2.0.1

charts/fluent-operator/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ operator:
1616
tag: "20.10"
1717
container:
1818
repository: "kubesphere/fluent-operator"
19-
tag: "v2.0.0"
19+
tag: "v2.0.1"
2020
# FluentBit operator resources. Usually user needn't to adjust these.
2121
resources:
2222
limits:
@@ -42,7 +42,7 @@ operator:
4242
fluentbit:
4343
image:
4444
repository: "kubesphere/fluent-bit"
45-
tag: "v2.0.8"
45+
tag: "v2.0.9"
4646
# fluentbit resources. If you do want to specify resources, adjust them as necessary
4747
#You can adjust it based on the log volume.
4848
resources:
@@ -166,7 +166,7 @@ fluentd:
166166
port: 24224
167167
image:
168168
repository: "kubesphere/fluentd"
169-
tag: "v1.14.6"
169+
tag: "v1.15.3"
170170
replicas: 1
171171
forward:
172172
port: 24224

cmd/fluent-watcher/fluentbit/Dockerfile

Lines changed: 1 addition & 1 deletion
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 -i -ldflags '-w -s' -o /fluent-bit/fluent-bit /code/cmd/fluent-watcher/fluentbit/main.go
88

9-
FROM fluent/fluent-bit:2.0.8
9+
FROM fluent/fluent-bit:2.0.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/fluentd/Dockerfile.amd64

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ RUN echo $(ls -al /code)
88
RUN CGO_ENABLED=0 go build -i -ldflags '-w -s' -o /fluentd/fluentd-watcher /code/cmd/fluent-watcher/fluentd/main.go
99

1010
# Fluentd main image
11-
FROM alpine:3.13
12-
LABEL Description="Fluentd docker image" Vendor="Fluent Organization" Version="1.14.6"
11+
FROM alpine:3.16
12+
LABEL Description="Fluentd docker image" Vendor="Fluent Organization" Version="1.15.3"
1313

1414
# Do not split this into multiple RUN!
1515
# Docker creates a layer for every RUN-Statement
@@ -23,11 +23,11 @@ RUN apk update \
2323
build-base linux-headers \
2424
ruby-dev gnupg \
2525
&& echo 'gem: --no-document' >> /etc/gemrc \
26-
&& gem install oj -v 3.10.18 \
27-
&& gem install json -v 2.4.1 \
28-
&& gem install async-http -v 0.54.0 \
29-
&& gem install ext_monitor -v 0.1.2 \
30-
&& gem install fluentd -v 1.14.6 \
26+
&& gem install oj -v 3.13.22 \
27+
&& gem install json -v 2.6.2 \
28+
&& gem install async -v 1.30.3 \
29+
&& gem install async-http -v 0.56.6 \
30+
&& gem install fluentd -v 1.15.3 \
3131
&& gem install bigdecimal -v 1.4.4 \
3232
# NOTE: resolv v0.2.1 includes the fix for CPU spike issue due to DNS resolver.
3333
# This hack is needed for Ruby 2.6.7, 2.7.3 and 3.0.1. (alpine image is still kept on 2.7.3)

0 commit comments

Comments
 (0)