Skip to content

Commit

Permalink
Fluentbit 1.9.2 -> 1.9.3
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub <noreply@github.com>
  • Loading branch information
aslafy-z authored and ahma committed May 10, 2022
1 parent b3c7877 commit 88be083
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion charts/logging-operator-logging/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The following tables lists the configurable parameters of the logging-operator-l
| `fluentbit.enabled` | Install fluent-bit | true |
| `fluentbit.namespace` | Specified fluentbit installation namespace | same as operator namespace |
| `fluentbit.tolerations` | Tolerations for fluentbit daemonset | none |
| `fluentbit.image.tag` | Fluentbit container image tag | `1.9.2` |
| `fluentbit.image.tag` | Fluentbit container image tag | `1.9.3` |
| `fluentbit.image.repository` | Fluentbit container image repository | `fluent/fluent-bit` |
| `fluentbit.image.pullPolicy` | Fluentbit container pull policy | `IfNotPresent` |
| `fluentbit.podPriorityClassName` | Priority class name for fluentbit pods | none |
Expand Down
2 changes: 1 addition & 1 deletion charts/logging-operator-logging/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ nodeAgents: {}
# template:
# spec:
# containers:
# - image: banzaicloud/fluentbit:1.9.2
# - image: banzaicloud/fluentbit:1.9.3
# name: fluent-bit
# tls:
# enabled: false
Expand Down
2 changes: 1 addition & 1 deletion charts/logging-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ The following tables lists the configurable parameters of the logging-operator-l
| `tls.sharedKey` | Shared key between nodes (fluentd-fluentbit) | [autogenerated] |
| `fluentbit.enabled` | Install fluent-bit | true |
| `fluentbit.namespace` | Specified fluentbit installation namespace | same as operator namespace |
| `fluentbit.image.tag` | Fluentbit container image tag | `1.9.2` |
| `fluentbit.image.tag` | Fluentbit container image tag | `1.9.3` |
| `fluentbit.image.repository` | Fluentbit container image repository | `fluent/fluent-bit` |
| `fluentbit.image.pullPolicy` | Fluentbit container pull policy | `IfNotPresent` |
| `fluentd.enabled` | Install fluentd | true |
Expand Down
2 changes: 1 addition & 1 deletion config/samples/logging_v1alpha2_logging_debug.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spec:
disablePvc: true
fluentbit:
image:
tag: 1.9.2-debug
tag: 1.9.3-debug
repository: fluent/fluent-bit
pullPolicy: IfNotPresent
controlNamespace: default
2 changes: 1 addition & 1 deletion pkg/resources/nodeagent/nodeagent.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func NodeAgentFluentbitDefaults(userDefined **v1beta1.NodeAgent) (*v1beta1.NodeA
Containers: []v1.Container{
{
Name: containerName,
Image: "fluent/fluent-bit:1.9.2",
Image: "fluent/fluent-bit:1.9.3",
Command: []string{"/fluent-bit/bin/fluent-bit", "-c", "/fluent-bit/conf_operator/fluent-bit.conf"},
ImagePullPolicy: v1.PullIfNotPresent,
Resources: v1.ResourceRequirements{
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 @@ -72,7 +72,7 @@ var Global = GlobalConfig{

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

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

// TailerWebhook configuration
var TailerWebhook = TailerWebhookConfig{
FluentBitImage: "fluent/fluent-bit:1.9.2",
FluentBitImage: "fluent/fluent-bit:1.9.3",
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 @@ -114,7 +114,7 @@ type DefaultFlowSpec struct {

const (
DefaultFluentbitImageRepository = "fluent/fluent-bit"
DefaultFluentbitImageTag = "1.9.2"
DefaultFluentbitImageTag = "1.9.3"
DefaultFluentdImageRepository = "ghcr.io/banzaicloud/fluentd"
DefaultFluentdImageTag = "v1.14.6-alpine-4"
DefaultFluentdBufferStorageVolumeName = "fluentd-buffer"
Expand Down

0 comments on commit 88be083

Please sign in to comment.