Skip to content

Commit

Permalink
New fluentbit version 1.3.6 -> 1.3.8 (#372)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahma authored Feb 20, 2020
1 parent 5284315 commit a4cdf9a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 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.3.2` |
| `fluentbit.image.tag` | Fluentbit container image tag | `1.3.8` |
| `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/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,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.3.2` |
| `fluentbit.image.tag` | Fluentbit container image tag | `1.3.8` |
| `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.3.2-debug
tag: 1.3.8-debug
repository: fluent/fluent-bit
pullPolicy: IfNotPresent
controlNamespace: default
2 changes: 1 addition & 1 deletion docs/fluentbit.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Fluent Bit is an open source and multi-platform Log Processor and Forwarder whic

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.

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

## Filters
### Kubernetes (filterKubernetes)
Expand Down
2 changes: 1 addition & 1 deletion pkg/sdk/api/v1beta1/logging_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ func (l *Logging) SetDefaults() (*Logging, error) {
copy.Spec.FluentbitSpec.Image.Repository = "fluent/fluent-bit"
}
if copy.Spec.FluentbitSpec.Image.Tag == "" {
copy.Spec.FluentbitSpec.Image.Tag = "1.3.6"
copy.Spec.FluentbitSpec.Image.Tag = "1.3.8"
}
if copy.Spec.FluentbitSpec.Image.PullPolicy == "" {
copy.Spec.FluentbitSpec.Image.PullPolicy = "IfNotPresent"
Expand Down

0 comments on commit a4cdf9a

Please sign in to comment.