Skip to content

Commit

Permalink
Merge pull request #286 from wenchajun/release-1.0.1
Browse files Browse the repository at this point in the history
Release 1.0.1
  • Loading branch information
benjaminhuo committed May 12, 2022
2 parents ed3640b + 82a5f17 commit 4f46525
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-fb-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
- "pkg/filenotify/**"

env:
FB_IMG: 'kubesphere/fluent-bit:v1.8.11'
FB_IMG: 'kubesphere/fluent-bit:v1.9.3'

jobs:
build:
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 1.0.1 / 2022-05-10
## 1.0.1 / 2022-05-12

### ENHANCEMENT
- Add utils related unit tests (#251)
Expand All @@ -8,6 +8,7 @@

### BUGFIX
- Fix the bug of feature request issue will closed by mistake (#257)
- Fix crio init container mount path (#260)
- Fix version error (#261)
- Fix Helm Chart for Fluentd resources settings (#271)
- Fix reload error (#277)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION?=$(shell cat VERSION | tr -d " \t\n\r")
# Image URL to use all building/pushing image targets
FB_IMG ?= kubesphere/fluent-bit:v1.8.11
FB_IMG ?= kubesphere/fluent-bit:v1.9.3
FD_IMG ?= kubesphere/fluentd:v1.14.4
FO_IMG ?= kubesphere/fluent-operator:$(VERSION)

Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ This page describes the release process and the currently planned schedule for u
| v0.12.0 | 2021-09-13 | Wanjun Lei (GitHub: @wanjunlei) |
| v0.13.0 | 2022-03-14 | Elon Cheng (GitHub: @wenchajun) |
| v1.0.0 | 2022-03-25 | Elon Cheng (GitHub: @wenchajun) |
| v1.0.1 | 2022-05-10 | Elon Cheng (GitHub: @wenchajun) |
| v1.0.1 | 2022-05-12 | Elon Cheng (GitHub: @wenchajun) |

# How to cut a new release

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ spec:
echo CONTAINER_ROOT_DIR={{ .Values.operator.logPath.crio }} > /fluent-operator/fluent-bit.env
volumeMounts:
- name: env
mountPath: /fluentbit-operator
mountPath: /fluent-operator
{{- end }}
containers:
- name: fluent-operator
Expand All @@ -86,4 +86,4 @@ spec:
{{- if .Values.operator.imagePullSecrets }}
imagePullSecrets:
{{ toYaml .Values.operator.imagePullSecrets | indent 8 }}
{{- end }}
{{- end }}
2 changes: 1 addition & 1 deletion charts/fluent-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ operator:
fluentbit:
image:
repository: "kubesphere/fluent-bit"
tag: "v1.8.11"
tag: "v1.9.3"
# fluentbit resources. If you do want to specify resources, adjust them as necessary
#You can adjust it based on the log volume.
resources:
Expand Down
2 changes: 1 addition & 1 deletion cmd/fluent-watcher/fluentbit/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ WORKDIR /code
RUN echo $(ls -al /code)
RUN CGO_ENABLED=0 go build -i -ldflags '-w -s' -o /fluent-bit/fluent-bit /code/cmd/fluent-watcher/fluentbit/main.go

FROM fluent/fluent-bit:1.8.11
FROM fluent/fluent-bit:1.9.3
LABEL Description="Fluent Bit docker image" Vendor="Fluent" Version="1.0"

COPY conf/fluent-bit.conf conf/parsers.conf /fluent-bit/etc/
Expand Down

0 comments on commit 4f46525

Please sign in to comment.