From 6fa21629a52406adcb4f3a9d8d03bbe623f9e282 Mon Sep 17 00:00:00 2001 From: Ferenc Hernadi Date: Fri, 29 Apr 2022 23:25:13 +0200 Subject: [PATCH] Release 3.17.5 --- charts/logging-demo/Chart.yaml | 4 ++-- charts/logging-operator-logging/Chart.yaml | 4 ++-- charts/logging-operator/Chart.yaml | 4 ++-- charts/logging-operator/README.md | 2 +- charts/logging-operator/values.yaml | 2 +- pkg/sdk/logging/model/output/kafka.go | 4 ++-- pkg/sdk/logging/model/output/sumologic.go | 4 ++-- pkg/sdk/resourcebuilder/component.go | 2 +- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/charts/logging-demo/Chart.yaml b/charts/logging-demo/Chart.yaml index a4f1f2e65..edf51213e 100644 --- a/charts/logging-demo/Chart.yaml +++ b/charts/logging-demo/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 -appVersion: "3.17.6" +appVersion: "3.17.5" description: A Helm chart for Kubernetes name: logging-demo -version: 3.17.6 +version: 3.17.5 icon: https://raw.githubusercontent.com/banzaicloud/logging-operator/master/docs/img/icon.png diff --git a/charts/logging-operator-logging/Chart.yaml b/charts/logging-operator-logging/Chart.yaml index 38fcdb971..7edb9b44f 100644 --- a/charts/logging-operator-logging/Chart.yaml +++ b/charts/logging-operator-logging/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 -appVersion: "3.17.6" +appVersion: "3.17.5" description: A Helm chart to configure logging resource for the Logging operator name: logging-operator-logging -version: 3.17.6 +version: 3.17.5 icon: https://raw.githubusercontent.com/banzaicloud/logging-operator/master/docs/img/icon.png diff --git a/charts/logging-operator/Chart.yaml b/charts/logging-operator/Chart.yaml index 966e40dd1..21f31514e 100644 --- a/charts/logging-operator/Chart.yaml +++ b/charts/logging-operator/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v1 -appVersion: "3.17.6" +appVersion: "3.17.5" description: A Helm chart to install Banzai Cloud logging-operator name: logging-operator -version: 3.17.6 +version: 3.17.5 \ No newline at end of file diff --git a/charts/logging-operator/README.md b/charts/logging-operator/README.md index 438f6860d..7a1bbe86e 100644 --- a/charts/logging-operator/README.md +++ b/charts/logging-operator/README.md @@ -49,7 +49,7 @@ The following tables lists the configurable parameters of the logging-operator c | Parameter | Description | Default | | --------------------------------------------------- | ------------------------------------------------------ |-----------------------------------------------------------------------| | `image.repository` | Container image repository | `ghcr.io/banzaicloud/logging-operator` | -| `image.tag` | Container image tag | `3.17.6` | +| `image.tag` | Container image tag | `3.17.5` | | `image.pullPolicy` | Container pull policy | `IfNotPresent` | | `nameOverride` | Override name of app | `` | | `fullnameOverride` | Override full name of app | `` | diff --git a/charts/logging-operator/values.yaml b/charts/logging-operator/values.yaml index 4a3fbf155..b819351e1 100644 --- a/charts/logging-operator/values.yaml +++ b/charts/logging-operator/values.yaml @@ -6,7 +6,7 @@ replicaCount: 1 image: repository: ghcr.io/banzaicloud/logging-operator - tag: 3.17.6 + tag: 3.17.5 pullPolicy: IfNotPresent extraArgs: diff --git a/pkg/sdk/logging/model/output/kafka.go b/pkg/sdk/logging/model/output/kafka.go index bc221bb5d..7e9dd2d56 100644 --- a/pkg/sdk/logging/model/output/kafka.go +++ b/pkg/sdk/logging/model/output/kafka.go @@ -45,8 +45,8 @@ type _hugoKafka interface{} //nolint:deadcode,unused type _docKafka interface{} //nolint:deadcode,unused // +name:"Kafka" -// +url:"https://github.com/fluent/fluent-plugin-kafka/releases/tag/v0.17.3" -// +version:"0.17.3" +// +url:"https://github.com/fluent/fluent-plugin-kafka/releases/tag/v0.17.5" +// +version:"0.17.5" // +description:"Send your logs to Kafka" // +status:"GA" type _metaKafka interface{} //nolint:deadcode,unused diff --git a/pkg/sdk/logging/model/output/sumologic.go b/pkg/sdk/logging/model/output/sumologic.go index 94c6e8b64..776d2511b 100644 --- a/pkg/sdk/logging/model/output/sumologic.go +++ b/pkg/sdk/logging/model/output/sumologic.go @@ -56,8 +56,8 @@ type _hugoSumoLogic interface{} //nolint:deadcode,unused type _docSumoLogic interface{} //nolint:deadcode,unused // +name:"SumoLogic" -// +url:"https://github.com/SumoLogic/fluentd-output-sumologic/releases/tag/1.7.3" -// +version:"1.7.3" +// +url:"https://github.com/SumoLogic/fluentd-output-sumologic/releases/tag/1.8.0" +// +version:"1.8.0" // +description:"Send your logs to Sumologic" // +status:"GA" type _metaSumologic interface{} //nolint:deadcode,unused diff --git a/pkg/sdk/resourcebuilder/component.go b/pkg/sdk/resourcebuilder/component.go index 84ad751ae..921c717ca 100644 --- a/pkg/sdk/resourcebuilder/component.go +++ b/pkg/sdk/resourcebuilder/component.go @@ -50,7 +50,7 @@ import ( ) const ( - Image = "ghcr.io/banzaicloud/logging-operator:3.17.6" + Image = "ghcr.io/banzaicloud/logging-operator:3.17.5" defaultNamespace = "logging-system" )