Skip to content

Commit 9352cdb

Browse files
authored
Fluentbit version update 1.8.1 -> 1.8.5 (#811)
1 parent e0ded14 commit 9352cdb

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

charts/logging-operator-logging/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The following tables lists the configurable parameters of the logging-operator-l
2222
| `fluentbit.enabled` | Install fluent-bit | true |
2323
| `fluentbit.namespace` | Specified fluentbit installation namespace | same as operator namespace |
2424
| `fluentbit.tolerations` | Tolerations for fluentbit daemonset | none |
25-
| `fluentbit.image.tag` | Fluentbit container image tag | `1.8.1` |
25+
| `fluentbit.image.tag` | Fluentbit container image tag | `1.8.5` |
2626
| `fluentbit.image.repository` | Fluentbit container image repository | `fluent/fluent-bit` |
2727
| `fluentbit.image.pullPolicy` | Fluentbit container pull policy | `IfNotPresent` |
2828
| `fluentbit.podPriorityClassName` | Priority class name for fluentbit pods | none |

charts/logging-operator-logging/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ nodeAgents: {}
2929
# template:
3030
# spec:
3131
# containers:
32-
# - image: banzaicloud/fluentbit:1.8.1
32+
# - image: banzaicloud/fluentbit:1.8.5
3333
# name: fluent-bit
3434
# tls:
3535
# enabled: false

charts/logging-operator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ The following tables lists the configurable parameters of the logging-operator-l
112112
| `tls.sharedKey` | Shared key between nodes (fluentd-fluentbit) | [autogenerated] |
113113
| `fluentbit.enabled` | Install fluent-bit | true |
114114
| `fluentbit.namespace` | Specified fluentbit installation namespace | same as operator namespace |
115-
| `fluentbit.image.tag` | Fluentbit container image tag | `1.8.1` |
115+
| `fluentbit.image.tag` | Fluentbit container image tag | `1.8.5` |
116116
| `fluentbit.image.repository` | Fluentbit container image repository | `fluent/fluent-bit` |
117117
| `fluentbit.image.pullPolicy` | Fluentbit container pull policy | `IfNotPresent` |
118118
| `fluentd.enabled` | Install fluentd | true |

config/samples/logging_v1alpha2_logging_debug.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spec:
88
disablePvc: true
99
fluentbit:
1010
image:
11-
tag: 1.8.1-debug
11+
tag: 1.8.5-debug
1212
repository: fluent/fluent-bit
1313
pullPolicy: IfNotPresent
1414
controlNamespace: default

pkg/resources/nodeagent/nodeagent.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ func NodeAgentFluentbitDefaults(userDefined **v1beta1.NodeAgent) (*v1beta1.NodeA
6060
Containers: []v1.Container{
6161
{
6262
Name: containerName,
63-
Image: "fluent/fluent-bit:1.7.9",
63+
Image: "fluent/fluent-bit:1.8.5",
6464
Command: []string{"/fluent-bit/bin/fluent-bit", "-c", "/fluent-bit/conf_operator/fluent-bit.conf"},
6565
ImagePullPolicy: v1.PullIfNotPresent,
6666
Resources: v1.ResourceRequirements{

pkg/sdk/api/v1beta1/logging_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ type DefaultFlowSpec struct {
114114

115115
const (
116116
DefaultFluentbitImageRepository = "fluent/fluent-bit"
117-
DefaultFluentbitImageTag = "1.8.1"
117+
DefaultFluentbitImageTag = "1.8.5"
118118
DefaultFluentdImageRepository = "ghcr.io/banzaicloud/fluentd"
119119
DefaultFluentdImageTag = "v1.12.4-alpine-4"
120120
DefaultFluentdBufferStorageVolumeName = "fluentd-buffer"

0 commit comments

Comments
 (0)