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

deps: upgrade fluentbit to 2.2.2 #1713

Merged
merged 1 commit into from
Apr 4, 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
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ spec:
connectTimeout: 2
metrics: {}
image:
tag: 2.1.8-debug
tag: 2.2.2-debug
---
apiVersion: logging.banzaicloud.io/v1beta1
kind: LoggingRoute
Expand Down
4 changes: 2 additions & 2 deletions pkg/sdk/extensions/extensionsconfig/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ var Global = GlobalConfig{

// HostTailer configuration
var HostTailer = HostTailerConfig{
FluentBitImage: "fluent/fluent-bit:2.1.8",
FluentBitImage: "fluent/fluent-bit:2.2.2",
TailerAffix: "host-tailer",
}

Expand All @@ -85,7 +85,7 @@ var EventTailer = EventTailerConfig{

// TailerWebhook configuration
var TailerWebhook = TailerWebhookConfig{
FluentBitImage: "fluent/fluent-bit:2.1.8",
FluentBitImage: "fluent/fluent-bit:2.2.2",
AnnotationKey: "sidecar.logging-extensions.banzaicloud.io/tail",
ServerPath: "/tailer-webhook",
ServerPort: 9443,
Expand Down
2 changes: 1 addition & 1 deletion pkg/sdk/logging/api/v1beta1/logging_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ type DefaultFlowSpec struct {

const (
DefaultFluentbitImageRepository = "fluent/fluent-bit"
DefaultFluentbitImageTag = "2.1.8"
DefaultFluentbitImageTag = "2.2.2"
DefaultFluentbitBufferVolumeImageRepository = "ghcr.io/kube-logging/node-exporter"
DefaultFluentbitBufferVolumeImageTag = "v0.7.1"
DefaultFluentbitBufferStorageVolumeName = "fluentbit-buffer"
Expand Down
Loading