diff --git a/charts/logging-demo/Chart.yaml b/charts/logging-demo/Chart.yaml index 2b320add4..0dba72625 100644 --- a/charts/logging-demo/Chart.yaml +++ b/charts/logging-demo/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 -appVersion: "3.12.0" +appVersion: "3.13.0" description: A Helm chart for Kubernetes name: logging-demo -version: 3.12.0 +version: 3.13.0 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 29246811e..12dc40d27 100644 --- a/charts/logging-operator-logging/Chart.yaml +++ b/charts/logging-operator-logging/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 -appVersion: "3.9.5" +appVersion: "3.13.0" description: A Helm chart to configure logging resource for the Logging operator name: logging-operator-logging -version: 3.9.5 +version: 3.13.0 icon: https://raw.githubusercontent.com/banzaicloud/logging-operator/master/docs/img/icon.png diff --git a/charts/logging-operator-logging/README.md b/charts/logging-operator-logging/README.md index 5470d520b..d1bfa0697 100644 --- a/charts/logging-operator-logging/README.md +++ b/charts/logging-operator-logging/README.md @@ -27,7 +27,7 @@ The following tables lists the configurable parameters of the logging-operator-l | `fluentbit.image.pullPolicy` | Fluentbit container pull policy | `IfNotPresent` | | `fluentbit.podPriorityClassName` | Priority class name for fluentbit pods | none | | `fluentd.enabled` | Install fluentd | true | -| `fluentd.image.tag` | Fluentd container image tag | `v1.12.4-alpine-3` | +| `fluentd.image.tag` | Fluentd container image tag | `v1.12.4-alpine-4` | | `fluentd.image.repository` | Fluentd container image repository | `ghcr.io/banzaicloud/fluentd` | | `fluentd.image.pullPolicy` | Fluentd container pull policy | `IfNotPresent` | | `fluentd.volumeModImage.tag` | Fluentd volumeModImage container image tag | `latest` | diff --git a/charts/logging-operator/Chart.yaml b/charts/logging-operator/Chart.yaml index 6d44e588f..46fd86278 100644 --- a/charts/logging-operator/Chart.yaml +++ b/charts/logging-operator/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v1 -appVersion: "3.12.0" +appVersion: "3.13.0" description: A Helm chart to install Banzai Cloud logging-operator name: logging-operator -version: 3.12.0 +version: 3.13.0 diff --git a/charts/logging-operator/README.md b/charts/logging-operator/README.md index 94f71f6e4..f3fe4234b 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.9.5` | +| `image.tag` | Container image tag | `3.13.0` | | `image.pullPolicy` | Container pull policy | `IfNotPresent` | | `nameOverride` | Override name of app | `` | | `fullnameOverride` | Override full name of app | `` | @@ -116,7 +116,7 @@ The following tables lists the configurable parameters of the logging-operator-l | `fluentbit.image.repository` | Fluentbit container image repository | `fluent/fluent-bit` | | `fluentbit.image.pullPolicy` | Fluentbit container pull policy | `IfNotPresent` | | `fluentd.enabled` | Install fluentd | true | -| `fluentd.image.tag` | Fluentd container image tag | `v1.12.4-alpine-3` | +| `fluentd.image.tag` | Fluentd container image tag | `v1.12.4-alpine-4` | | `fluentd.image.repository` | Fluentd container image repository | `ghcr.io/banzaicloud/fluentd` | | `fluentd.image.pullPolicy` | Fluentd container pull policy | `IfNotPresent` | | `fluentd.volumeModImage.tag` | Fluentd volumeModImage container image tag | `latest` | diff --git a/charts/logging-operator/values.yaml b/charts/logging-operator/values.yaml index 8c8363765..55efd0b71 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.12.0 + tag: 3.13.0 pullPolicy: IfNotPresent extraArgs: diff --git a/pkg/sdk/api/v1beta1/logging_types.go b/pkg/sdk/api/v1beta1/logging_types.go index 40d56808c..5fa4770f4 100644 --- a/pkg/sdk/api/v1beta1/logging_types.go +++ b/pkg/sdk/api/v1beta1/logging_types.go @@ -112,9 +112,9 @@ type DefaultFlowSpec struct { const ( DefaultFluentbitImageRepository = "fluent/fluent-bit" - DefaultFluentbitImageTag = "1.7.9" + DefaultFluentbitImageTag = "1.8.1" DefaultFluentdImageRepository = "ghcr.io/banzaicloud/fluentd" - DefaultFluentdImageTag = "v1.12.4-alpine-3" + DefaultFluentdImageTag = "v1.12.4-alpine-4" DefaultFluentdBufferStorageVolumeName = "fluentd-buffer" DefaultFluentdDrainWatchImageRepository = "ghcr.io/banzaicloud/fluentd-drain-watch" DefaultFluentdDrainWatchImageTag = "v0.0.1" diff --git a/pkg/sdk/model/filter/concat.go b/pkg/sdk/model/filter/concat.go index 5a0d09bd5..8f7bcc8e2 100644 --- a/pkg/sdk/model/filter/concat.go +++ b/pkg/sdk/model/filter/concat.go @@ -30,7 +30,7 @@ type _docConcat interface{} // +name:"Concat" // +url:"https://github.com/fluent-plugins-nursery/fluent-plugin-concat" -// +version:"2.4.0" +// +version:"2.5.0" // +description:"Fluentd Filter plugin to concatenate multiline log separated in multiple events." // +status:"GA" type _metaConcat interface{} diff --git a/pkg/sdk/model/filter/enhance_k8s.go b/pkg/sdk/model/filter/enhance_k8s.go index fa042e0f1..dc4a63ce6 100644 --- a/pkg/sdk/model/filter/enhance_k8s.go +++ b/pkg/sdk/model/filter/enhance_k8s.go @@ -30,7 +30,7 @@ type _docEnhanceK8s interface{} // +name:"Enhance K8s Metadata" // +url:"https://github.com/SumoLogic/sumologic-kubernetes-collection/tree/main/fluent-plugin-enhance-k8s-metadata" -// +version:"0.0.0" +// +version:"2.0.0" // +description:"Fluentd output plugin to add extra Kubernetes metadata to the events." // +status:"GA" type _metaEnhanceK8s interface{} diff --git a/pkg/sdk/model/filter/prometheus.go b/pkg/sdk/model/filter/prometheus.go index 10c693f56..e2785b331 100644 --- a/pkg/sdk/model/filter/prometheus.go +++ b/pkg/sdk/model/filter/prometheus.go @@ -30,7 +30,7 @@ type _docPrometheus interface{} // +name:"Prometheus" // +url:"https://github.com/fluent/fluent-plugin-prometheus#prometheus-outputfilter-plugin" -// +version:"1.8.5" +// +version:"2.0.1" // +description:"Prometheus Filter Plugin to count Incoming Records" // +status:"GA" type _metaPrometheus interface{} diff --git a/pkg/sdk/model/output/aws_elasticsearch.go b/pkg/sdk/model/output/aws_elasticsearch.go index 32d1c43f3..3ee2e6288 100644 --- a/pkg/sdk/model/output/aws_elasticsearch.go +++ b/pkg/sdk/model/output/aws_elasticsearch.go @@ -39,7 +39,7 @@ type _docAwsElasticsearch interface{} // +name:"Amazon Elasticsearch" // +url:"https://github.com/atomita/fluent-plugin-aws-elasticsearch-service" -// +version:"2.4.0" +// +version:"2.4.1" // +description:"Fluent plugin for Amazon Elasticsearch" // +status:"Testing" type _metaAwsElasticsearch interface{} diff --git a/pkg/sdk/model/output/cloudwatch.go b/pkg/sdk/model/output/cloudwatch.go index f5e1a8f9d..ae01582fa 100644 --- a/pkg/sdk/model/output/cloudwatch.go +++ b/pkg/sdk/model/output/cloudwatch.go @@ -53,8 +53,8 @@ type _hugoCloudWatch interface{} type _docCloudWatch interface{} // +name:"Amazon CloudWatch" -// +url:"https://github.com/fluent-plugins-nursery/fluent-plugin-cloudwatch-logs/releases/tag/v0.13.2" -// +version:"0.13.2" +// +url:"https://github.com/fluent-plugins-nursery/fluent-plugin-cloudwatch-logs/releases/tag/v0.14.0" +// +version:"0.14.0" // +description:"Send your logs to AWS CloudWatch" // +status:"GA" type _metaCloudWatch interface{} diff --git a/pkg/sdk/model/output/datadog.go b/pkg/sdk/model/output/datadog.go index 39bdc7958..ea00894dc 100644 --- a/pkg/sdk/model/output/datadog.go +++ b/pkg/sdk/model/output/datadog.go @@ -29,8 +29,8 @@ type _hugoDatadog interface{} type _docDatadog interface{} // +name:"Datadog" -// +url:"https://github.com/DataDog/fluent-plugin-datadog/releases/tag/v0.12.1" -// +version:"0.12.1" +// +url:"https://github.com/DataDog/fluent-plugin-datadog/releases/tag/v0.13.0" +// +version:"0.13.0" // +description:"Send your logs to Datadog" // +status:"Testing" type _metaDatadog interface{} diff --git a/pkg/sdk/model/output/elasticsearch.go b/pkg/sdk/model/output/elasticsearch.go index e2a1b55d1..e38ee2b49 100644 --- a/pkg/sdk/model/output/elasticsearch.go +++ b/pkg/sdk/model/output/elasticsearch.go @@ -44,8 +44,8 @@ type _hugoElasticsearch interface{} type _docElasticsearch interface{} // +name:"Elasticsearch" -// +url:"https://github.com/uken/fluent-plugin-elasticsearch/releases/tag/v4.3.3" -// +version:"4.3.3" +// +url:"https://github.com/uken/fluent-plugin-elasticsearch/releases/tag/v5.0.5" +// +version:"5.0.5" // +description:"Send your logs to Elasticsearch" // +status:"GA" type _metaElasticsearch interface{} diff --git a/pkg/sdk/model/output/kafka.go b/pkg/sdk/model/output/kafka.go index 3e9353f66..a28d30b70 100644 --- a/pkg/sdk/model/output/kafka.go +++ b/pkg/sdk/model/output/kafka.go @@ -45,8 +45,8 @@ type _hugoKafka interface{} type _docKafka interface{} // +name:"Kafka" -// +url:"https://github.com/fluent/fluent-plugin-kafka/releases/tag/v0.15.3" -// +version:"0.15.3" +// +url:"https://github.com/fluent/fluent-plugin-kafka/releases/tag/v0.16.3" +// +version:"0.16.3" // +description:"Send your logs to Kafka" // +status:"GA" type _metaKafka interface{} diff --git a/pkg/sdk/model/output/kinesis_firehose.go b/pkg/sdk/model/output/kinesis_firehose.go index ed4a0df33..044fc7a47 100644 --- a/pkg/sdk/model/output/kinesis_firehose.go +++ b/pkg/sdk/model/output/kinesis_firehose.go @@ -38,8 +38,8 @@ type _hugoKinesisFirehose interface{} type _docKinesisFirehose interface{} // +name:"Amazon Kinesis Firehose" -// +url:"https://github.com/awslabs/aws-fluent-plugin-kinesis/releases/tag/v3.3.0" -// +version:"3.3.0" +// +url:"https://github.com/awslabs/aws-fluent-plugin-kinesis/releases/tag/v3.4.0" +// +version:"3.4.0" // +description:"Fluent plugin for Amazon Kinesis" // +status:"Testing" type _metaKinesisFirehose interface{} diff --git a/pkg/sdk/model/output/kinesis_stream.go b/pkg/sdk/model/output/kinesis_stream.go index 6ef6a7770..1038e4f0b 100644 --- a/pkg/sdk/model/output/kinesis_stream.go +++ b/pkg/sdk/model/output/kinesis_stream.go @@ -38,8 +38,8 @@ type _hugoKinesisStream interface{} type _docKinesisStream interface{} // +name:"Amazon Kinesis Stream" -// +url:"https://github.com/awslabs/aws-fluent-plugin-kinesis/releases/tag/v3.3.0" -// +version:"3.3.0" +// +url:"https://github.com/awslabs/aws-fluent-plugin-kinesis/releases/tag/v3.4.0" +// +version:"3.4.0" // +description:"Fluent plugin for Amazon Kinesis" // +status:"GA" type _metaKinesis interface{} diff --git a/pkg/sdk/model/output/newrelic.go b/pkg/sdk/model/output/newrelic.go index ac197fc48..5d4810817 100644 --- a/pkg/sdk/model/output/newrelic.go +++ b/pkg/sdk/model/output/newrelic.go @@ -42,7 +42,7 @@ type _docNewRelic interface{} // +name:"NewRelic Logs" // +url:"https://github.com/newrelic/newrelic-fluentd-output" -// +version:"1.1.10" +// +version:"1.2.0" // +description:"Send logs to New Relic Logs" // +status:"GA" type _metaNewRelic interface{} diff --git a/pkg/sdk/model/output/s3.go b/pkg/sdk/model/output/s3.go index 62df284f4..a9f517585 100644 --- a/pkg/sdk/model/output/s3.go +++ b/pkg/sdk/model/output/s3.go @@ -55,8 +55,8 @@ type _hugoS3 interface{} type _docS3 interface{} // +name:"Amazon S3" -// +url:"https://github.com/fluent/fluent-plugin-s3/releases/tag/v1.4.0" -// +version:"1.4.0" +// +url:"https://github.com/fluent/fluent-plugin-s3/releases/tag/v1.6.0" +// +version:"1.6.0" // +description:"Store logs in Amazon S3" // +status:"GA" type _metaS3 interface{} diff --git a/pkg/sdk/model/output/splunk_hec.go b/pkg/sdk/model/output/splunk_hec.go index 58aa3eb85..3672957c8 100644 --- a/pkg/sdk/model/output/splunk_hec.go +++ b/pkg/sdk/model/output/splunk_hec.go @@ -39,8 +39,8 @@ type _hugoSplunk interface{} type _docSplunkHec interface{} // +name:"Splunk Hec" -// +url:"https://github.com/splunk/fluent-plugin-splunk-hec/releases/tag/1.2.3 -// +version:"1.2.3" +// +url:"https://github.com/splunk/fluent-plugin-splunk-hec/releases/tag/1.2.7 +// +version:"1.2.7" // +description:"Fluent Plugin Splunk Hec Release 1.2.3" // +status:"GA" type _metaSplunkHec interface{} diff --git a/pkg/sdk/model/output/syslog.go b/pkg/sdk/model/output/syslog.go index dfe3a0c25..16f8f40d4 100644 --- a/pkg/sdk/model/output/syslog.go +++ b/pkg/sdk/model/output/syslog.go @@ -30,7 +30,7 @@ type _docSyslog interface{} // +name:"Syslog" // +url:"https://github.com/cloudfoundry/fluent-plugin-syslog_rfc5424" -// +version:"0.9.0.rc.5" +// +version:"0.9.0.rc.8" // +description:"Output plugin writes events to syslog" // +status:"GA" type _metaSyslog interface{} diff --git a/pkg/sdk/resourcebuilder/component.go b/pkg/sdk/resourcebuilder/component.go index 4bf9c0d9a..c0ce44da6 100644 --- a/pkg/sdk/resourcebuilder/component.go +++ b/pkg/sdk/resourcebuilder/component.go @@ -41,7 +41,7 @@ import ( ) const ( - Image = "ghcr.io/banzaicloud/logging-operator:3.12.0" + Image = "ghcr.io/banzaicloud/logging-operator:3.13.0" defaultNamespace = "logging-system" )