Skip to content

Commit e66b099

Browse files
committed
release 1.17.2
Fluentbit 1.8.13
1 parent ca765f6 commit e66b099

File tree

11 files changed

+15
-15
lines changed

11 files changed

+15
-15
lines changed

charts/logging-demo/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
2-
appVersion: "3.17.1"
2+
appVersion: "3.17.2"
33
description: A Helm chart for Kubernetes
44
name: logging-demo
5-
version: 3.17.1
5+
version: 3.17.2
66
icon: https://raw.githubusercontent.com/banzaicloud/logging-operator/master/docs/img/icon.png
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
2-
appVersion: "3.17.1"
2+
appVersion: "3.17.2"
33
description: A Helm chart to configure logging resource for the Logging operator
44
name: logging-operator-logging
5-
version: 3.17.1
5+
version: 3.17.2
66
icon: https://raw.githubusercontent.com/banzaicloud/logging-operator/master/docs/img/icon.png

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.12` |
25+
| `fluentbit.image.tag` | Fluentbit container image tag | `1.8.13` |
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.12
32+
# - image: banzaicloud/fluentbit:1.8.13
3333
# name: fluent-bit
3434
# tls:
3535
# enabled: false

charts/logging-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v1
2-
appVersion: "3.17.1"
2+
appVersion: "3.17.2"
33
description: A Helm chart to install Banzai Cloud logging-operator
44
name: logging-operator
5-
version: 3.17.1
5+
version: 3.17.2

charts/logging-operator/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ The following tables lists the configurable parameters of the logging-operator c
4949
| Parameter | Description | Default |
5050
| --------------------------------------------------- | ------------------------------------------------------ |-----------------------------------------------------------------------|
5151
| `image.repository` | Container image repository | `ghcr.io/banzaicloud/logging-operator` |
52-
| `image.tag` | Container image tag | `3.17.1` |
52+
| `image.tag` | Container image tag | `3.17.2` |
5353
| `image.pullPolicy` | Container pull policy | `IfNotPresent` |
5454
| `nameOverride` | Override name of app | `` |
5555
| `fullnameOverride` | Override full name of app | `` |
@@ -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.12` |
115+
| `fluentbit.image.tag` | Fluentbit container image tag | `1.8.13` |
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 |

charts/logging-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ replicaCount: 1
66

77
image:
88
repository: ghcr.io/banzaicloud/logging-operator
9-
tag: 3.17.1
9+
tag: 3.17.2
1010
pullPolicy: IfNotPresent
1111

1212
extraArgs:

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.12-debug
11+
tag: 1.8.13-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
@@ -61,7 +61,7 @@ func NodeAgentFluentbitDefaults(userDefined **v1beta1.NodeAgent) (*v1beta1.NodeA
6161
Containers: []v1.Container{
6262
{
6363
Name: containerName,
64-
Image: "fluent/fluent-bit:1.8.12",
64+
Image: "fluent/fluent-bit:1.8.13",
6565
Command: []string{"/fluent-bit/bin/fluent-bit", "-c", "/fluent-bit/conf_operator/fluent-bit.conf"},
6666
ImagePullPolicy: v1.PullIfNotPresent,
6767
Resources: v1.ResourceRequirements{

pkg/sdk/logging/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.12"
117+
DefaultFluentbitImageTag = "1.8.13"
118118
DefaultFluentdImageRepository = "ghcr.io/banzaicloud/fluentd"
119119
DefaultFluentdImageTag = "v1.14.5-alpine-1"
120120
DefaultFluentdBufferStorageVolumeName = "fluentd-buffer"

0 commit comments

Comments
 (0)