Skip to content

Commit a4cdf9a

Browse files
authored
New fluentbit version 1.3.6 -> 1.3.8 (#372)
1 parent 5284315 commit a4cdf9a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
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.3.2` |
25+
| `fluentbit.image.tag` | Fluentbit container image tag | `1.3.8` |
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/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ The following tables lists the configurable parameters of the logging-operator-l
108108
| `tls.sharedKey` | Shared key between nodes (fluentd-fluentbit) | [autogenerated] |
109109
| `fluentbit.enabled` | Install fluent-bit | true |
110110
| `fluentbit.namespace` | Specified fluentbit installation namespace | same as operator namespace |
111-
| `fluentbit.image.tag` | Fluentbit container image tag | `1.3.2` |
111+
| `fluentbit.image.tag` | Fluentbit container image tag | `1.3.8` |
112112
| `fluentbit.image.repository` | Fluentbit container image repository | `fluent/fluent-bit` |
113113
| `fluentbit.image.pullPolicy` | Fluentbit container pull policy | `IfNotPresent` |
114114
| `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.3.2-debug
11+
tag: 1.3.8-debug
1212
repository: fluent/fluent-bit
1313
pullPolicy: IfNotPresent
1414
controlNamespace: default

docs/fluentbit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Fluent Bit is an open source and multi-platform Log Processor and Forwarder whic
66

77
Fluent Bit is written in C, have a pluggable architecture supporting around 30 extensions. It's fast and lightweight and provide the required security for network operations through TLS.
88

9-
Current Version: [v1.3.6](https://github.com/fluent/fluent-bit/releases/tag/v1.3.6)
9+
Current Version: [v1.3.8](https://github.com/fluent/fluent-bit/releases/tag/v1.3.8)
1010

1111
## Filters
1212
### Kubernetes (filterKubernetes)

pkg/sdk/api/v1beta1/logging_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ func (l *Logging) SetDefaults() (*Logging, error) {
232232
copy.Spec.FluentbitSpec.Image.Repository = "fluent/fluent-bit"
233233
}
234234
if copy.Spec.FluentbitSpec.Image.Tag == "" {
235-
copy.Spec.FluentbitSpec.Image.Tag = "1.3.6"
235+
copy.Spec.FluentbitSpec.Image.Tag = "1.3.8"
236236
}
237237
if copy.Spec.FluentbitSpec.Image.PullPolicy == "" {
238238
copy.Spec.FluentbitSpec.Image.PullPolicy = "IfNotPresent"

0 commit comments

Comments
 (0)