Skip to content

Commit 7970529

Browse files
authored
Release 3.13 (#790)
1 parent c9912e6 commit 7970529

File tree

22 files changed

+35
-35
lines changed

22 files changed

+35
-35
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.12.0"
2+
appVersion: "3.13.0"
33
description: A Helm chart for Kubernetes
44
name: logging-demo
5-
version: 3.12.0
5+
version: 3.13.0
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.9.5"
2+
appVersion: "3.13.0"
33
description: A Helm chart to configure logging resource for the Logging operator
44
name: logging-operator-logging
5-
version: 3.9.5
5+
version: 3.13.0
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
@@ -27,7 +27,7 @@ The following tables lists the configurable parameters of the logging-operator-l
2727
| `fluentbit.image.pullPolicy` | Fluentbit container pull policy | `IfNotPresent` |
2828
| `fluentbit.podPriorityClassName` | Priority class name for fluentbit pods | none |
2929
| `fluentd.enabled` | Install fluentd | true |
30-
| `fluentd.image.tag` | Fluentd container image tag | `v1.12.4-alpine-3` |
30+
| `fluentd.image.tag` | Fluentd container image tag | `v1.12.4-alpine-4` |
3131
| `fluentd.image.repository` | Fluentd container image repository | `ghcr.io/banzaicloud/fluentd` |
3232
| `fluentd.image.pullPolicy` | Fluentd container pull policy | `IfNotPresent` |
3333
| `fluentd.volumeModImage.tag` | Fluentd volumeModImage container image tag | `latest` |

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.12.0"
2+
appVersion: "3.13.0"
33
description: A Helm chart to install Banzai Cloud logging-operator
44
name: logging-operator
5-
version: 3.12.0
5+
version: 3.13.0

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.9.5` |
52+
| `image.tag` | Container image tag | `3.13.0` |
5353
| `image.pullPolicy` | Container pull policy | `IfNotPresent` |
5454
| `nameOverride` | Override name of app | `` |
5555
| `fullnameOverride` | Override full name of app | `` |
@@ -116,7 +116,7 @@ The following tables lists the configurable parameters of the logging-operator-l
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 |
119-
| `fluentd.image.tag` | Fluentd container image tag | `v1.12.4-alpine-3` |
119+
| `fluentd.image.tag` | Fluentd container image tag | `v1.12.4-alpine-4` |
120120
| `fluentd.image.repository` | Fluentd container image repository | `ghcr.io/banzaicloud/fluentd` |
121121
| `fluentd.image.pullPolicy` | Fluentd container pull policy | `IfNotPresent` |
122122
| `fluentd.volumeModImage.tag` | Fluentd volumeModImage container image tag | `latest` |

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.12.0
9+
tag: 3.13.0
1010
pullPolicy: IfNotPresent
1111

1212
extraArgs:

pkg/sdk/api/v1beta1/logging_types.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,9 @@ type DefaultFlowSpec struct {
112112

113113
const (
114114
DefaultFluentbitImageRepository = "fluent/fluent-bit"
115-
DefaultFluentbitImageTag = "1.7.9"
115+
DefaultFluentbitImageTag = "1.8.1"
116116
DefaultFluentdImageRepository = "ghcr.io/banzaicloud/fluentd"
117-
DefaultFluentdImageTag = "v1.12.4-alpine-3"
117+
DefaultFluentdImageTag = "v1.12.4-alpine-4"
118118
DefaultFluentdBufferStorageVolumeName = "fluentd-buffer"
119119
DefaultFluentdDrainWatchImageRepository = "ghcr.io/banzaicloud/fluentd-drain-watch"
120120
DefaultFluentdDrainWatchImageTag = "v0.0.1"

pkg/sdk/model/filter/concat.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ type _docConcat interface{}
3030

3131
// +name:"Concat"
3232
// +url:"https://github.com/fluent-plugins-nursery/fluent-plugin-concat"
33-
// +version:"2.4.0"
33+
// +version:"2.5.0"
3434
// +description:"Fluentd Filter plugin to concatenate multiline log separated in multiple events."
3535
// +status:"GA"
3636
type _metaConcat interface{}

pkg/sdk/model/filter/enhance_k8s.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ type _docEnhanceK8s interface{}
3030

3131
// +name:"Enhance K8s Metadata"
3232
// +url:"https://github.com/SumoLogic/sumologic-kubernetes-collection/tree/main/fluent-plugin-enhance-k8s-metadata"
33-
// +version:"0.0.0"
33+
// +version:"2.0.0"
3434
// +description:"Fluentd output plugin to add extra Kubernetes metadata to the events."
3535
// +status:"GA"
3636
type _metaEnhanceK8s interface{}

pkg/sdk/model/filter/prometheus.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ type _docPrometheus interface{}
3030

3131
// +name:"Prometheus"
3232
// +url:"https://github.com/fluent/fluent-plugin-prometheus#prometheus-outputfilter-plugin"
33-
// +version:"1.8.5"
33+
// +version:"2.0.1"
3434
// +description:"Prometheus Filter Plugin to count Incoming Records"
3535
// +status:"GA"
3636
type _metaPrometheus interface{}

0 commit comments

Comments
 (0)