From 4687b59985d00d03a21ad69b25f136cfb324e454 Mon Sep 17 00:00:00 2001 From: Ravi Ghosh Date: Thu, 6 Mar 2025 19:14:16 +0530 Subject: [PATCH 01/20] support for Compress in Forward Output Plugin Signed-off-by: Ravi Ghosh --- apis/fluentbit/v1alpha2/plugins/output/forward_types.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apis/fluentbit/v1alpha2/plugins/output/forward_types.go b/apis/fluentbit/v1alpha2/plugins/output/forward_types.go index cac9cc0f7..0ea04ed57 100644 --- a/apis/fluentbit/v1alpha2/plugins/output/forward_types.go +++ b/apis/fluentbit/v1alpha2/plugins/output/forward_types.go @@ -30,6 +30,9 @@ type Forward struct { // Enables at-least-once and receiving server can control rate of traffic. // (Requires Fluentd v0.14.0+ server) RequireAckResponse *bool `json:"requireAckResponse,omitempty"` + // Set payload compression mechanism. Option available is 'gzip' + // +kubebuilder:validation:Enum=gzip + Compress string `json:"compress,omitempty"` // A key string known by the remote Fluentd used for authorization. SharedKey string `json:"sharedKey,omitempty"` // Use this option to connect to Fluentd with a zero-length secret. @@ -70,6 +73,9 @@ func (f *Forward) Params(sl plugins.SecretLoader) (*params.KVs, error) { if f.RequireAckResponse != nil { kvs.Insert("Require_ack_response", fmt.Sprint(*f.RequireAckResponse)) } + if f.Compress != nil { + kvs.Insert("Compress", fmt.Sprint(*f.Compress)) + } if f.SharedKey != "" { kvs.Insert("Shared_Key", f.SharedKey) } From 8cd995dc833fd2a55e85e8dcfba190886ddf828c Mon Sep 17 00:00:00 2001 From: Ravi Ghosh Date: Thu, 6 Mar 2025 19:17:08 +0530 Subject: [PATCH 02/20] Update fluentbit.fluent.io_clusteroutputs.yaml adding support for compress gzip Signed-off-by: Ravi Ghosh --- .../crds/fluentbit.fluent.io_clusteroutputs.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/charts/fluent-operator/charts/fluent-bit-crds/crds/fluentbit.fluent.io_clusteroutputs.yaml b/charts/fluent-operator/charts/fluent-bit-crds/crds/fluentbit.fluent.io_clusteroutputs.yaml index a8ad2998a..f67e1cc5b 100644 --- a/charts/fluent-operator/charts/fluent-bit-crds/crds/fluentbit.fluent.io_clusteroutputs.yaml +++ b/charts/fluent-operator/charts/fluent-bit-crds/crds/fluentbit.fluent.io_clusteroutputs.yaml @@ -1147,6 +1147,12 @@ spec: maximum: 65535 minimum: 1 type: integer + compress: + description: Set payload compression mechanism. Option available + is 'gzip' + enum: + - gzip + type: string requireAckResponse: description: |- Send "chunk"-option and wait for "ack" response from server. From bf464726bcc66dab1d3522ddd1304acf60d0d796 Mon Sep 17 00:00:00 2001 From: Ravi Ghosh Date: Thu, 6 Mar 2025 19:20:10 +0530 Subject: [PATCH 03/20] support for compress in forward output plugin Signed-off-by: Ravi Ghosh --- .../fluent-bit-crds/crds/fluentbit.fluent.io_outputs.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/charts/fluent-operator/charts/fluent-bit-crds/crds/fluentbit.fluent.io_outputs.yaml b/charts/fluent-operator/charts/fluent-bit-crds/crds/fluentbit.fluent.io_outputs.yaml index d99653d39..29750806c 100644 --- a/charts/fluent-operator/charts/fluent-bit-crds/crds/fluentbit.fluent.io_outputs.yaml +++ b/charts/fluent-operator/charts/fluent-bit-crds/crds/fluentbit.fluent.io_outputs.yaml @@ -1147,6 +1147,12 @@ spec: maximum: 65535 minimum: 1 type: integer + compress: + description: Set payload compression mechanism. Option available + is 'gzip' + enum: + - gzip + type: string requireAckResponse: description: |- Send "chunk"-option and wait for "ack" response from server. From 5e46b5b90f2aa21709221d4aac0c247c7ab6a048 Mon Sep 17 00:00:00 2001 From: Ravi Ghosh Date: Thu, 6 Mar 2025 19:24:08 +0530 Subject: [PATCH 04/20] support for Compress in Forward Output Plugin Signed-off-by: Ravi Ghosh --- config/crd/bases/fluentbit.fluent.io_clusteroutputs.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/crd/bases/fluentbit.fluent.io_clusteroutputs.yaml b/config/crd/bases/fluentbit.fluent.io_clusteroutputs.yaml index a8ad2998a..f67e1cc5b 100644 --- a/config/crd/bases/fluentbit.fluent.io_clusteroutputs.yaml +++ b/config/crd/bases/fluentbit.fluent.io_clusteroutputs.yaml @@ -1147,6 +1147,12 @@ spec: maximum: 65535 minimum: 1 type: integer + compress: + description: Set payload compression mechanism. Option available + is 'gzip' + enum: + - gzip + type: string requireAckResponse: description: |- Send "chunk"-option and wait for "ack" response from server. From 25e8867066838c46b7ae0e776130dab645750580 Mon Sep 17 00:00:00 2001 From: Ravi Ghosh Date: Thu, 6 Mar 2025 19:25:49 +0530 Subject: [PATCH 05/20] support for Compress in Forward Output Plugin Signed-off-by: Ravi Ghosh --- config/crd/bases/fluentbit.fluent.io_outputs.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/crd/bases/fluentbit.fluent.io_outputs.yaml b/config/crd/bases/fluentbit.fluent.io_outputs.yaml index d99653d39..29750806c 100644 --- a/config/crd/bases/fluentbit.fluent.io_outputs.yaml +++ b/config/crd/bases/fluentbit.fluent.io_outputs.yaml @@ -1147,6 +1147,12 @@ spec: maximum: 65535 minimum: 1 type: integer + compress: + description: Set payload compression mechanism. Option available + is 'gzip' + enum: + - gzip + type: string requireAckResponse: description: |- Send "chunk"-option and wait for "ack" response from server. From 2d0e0dbb643b21558abfacdc5c84ba79917ea2f8 Mon Sep 17 00:00:00 2001 From: Ravi Ghosh Date: Thu, 6 Mar 2025 19:27:48 +0530 Subject: [PATCH 06/20] support for Compress in Forward Output Plugin Signed-off-by: Ravi Ghosh --- docs/plugins/fluentbit/output/forward.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/plugins/fluentbit/output/forward.md b/docs/plugins/fluentbit/output/forward.md index f58e0d095..4622faf1e 100644 --- a/docs/plugins/fluentbit/output/forward.md +++ b/docs/plugins/fluentbit/output/forward.md @@ -10,6 +10,7 @@ Forward is the protocol used by Fluentd to route messages between peers.
| tag | Overwrite the tag as we transmit. This allows the receiving pipeline start fresh, or to attribute source. | string | | timeAsInteger | Set timestamps in integer format, it enable compatibility mode for Fluentd v0.12 series. | *bool | | sendOptions | Always send options (with \"size\"=count of messages) | *bool | +| compress | Set payload compression mechanism. Option available is 'gzip' | string | | requireAckResponse | Send \"chunk\"-option and wait for \"ack\" response from server. Enables at-least-once and receiving server can control rate of traffic. (Requires Fluentd v0.14.0+ server) | *bool | | sharedKey | A key string known by the remote Fluentd used for authorization. | string | | emptySharedKey | Use this option to connect to Fluentd with a zero-length secret. | *bool | From 1bcc9b5fc99eb217cee6eeeacde805dc32feb551 Mon Sep 17 00:00:00 2001 From: Ravi Ghosh Date: Fri, 7 Mar 2025 19:28:18 +0530 Subject: [PATCH 07/20] support for Compress in forward output plugin --- manifests/setup/fluent-operator-crd.yaml | 12 ++++++++++++ manifests/setup/setup.yaml | 10 ++++++++++ 2 files changed, 22 insertions(+) diff --git a/manifests/setup/fluent-operator-crd.yaml b/manifests/setup/fluent-operator-crd.yaml index ab042655d..3b1eb1f99 100644 --- a/manifests/setup/fluent-operator-crd.yaml +++ b/manifests/setup/fluent-operator-crd.yaml @@ -5196,6 +5196,12 @@ spec: maximum: 65535 minimum: 1 type: integer + compress: + description: Set payload compression mechanism. Option available + is 'gzip' + enum: + - gzip + type: string requireAckResponse: description: |- Send "chunk"-option and wait for "ack" response from server. @@ -34026,6 +34032,12 @@ spec: maximum: 65535 minimum: 1 type: integer + compress: + description: Set payload compression mechanism. Option available + is 'gzip' + enum: + - gzip + type: string requireAckResponse: description: |- Send "chunk"-option and wait for "ack" response from server. diff --git a/manifests/setup/setup.yaml b/manifests/setup/setup.yaml index 8f0bde87b..1624e8397 100644 --- a/manifests/setup/setup.yaml +++ b/manifests/setup/setup.yaml @@ -5196,6 +5196,10 @@ spec: maximum: 65535 minimum: 1 type: integer + compress: + description: Set payload compression mechanism. Option available + is 'gzip' + type: string requireAckResponse: description: |- Send "chunk"-option and wait for "ack" response from server. @@ -34026,6 +34030,12 @@ spec: maximum: 65535 minimum: 1 type: integer + compress: + description: Set payload compression mechanism. Option available + is 'gzip' + enum: + - gzip + type: string requireAckResponse: description: |- Send "chunk"-option and wait for "ack" response from server. From cfd236d80d1dda9f8d2d32e464e4d0a967756d64 Mon Sep 17 00:00:00 2001 From: Ravi Ghosh Date: Sat, 8 Mar 2025 01:07:18 +0530 Subject: [PATCH 08/20] text change Signed-off-by: Ravi Ghosh --- manifests/setup/fluent-operator-crd.yaml | 3 +-- manifests/setup/setup.yaml | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/manifests/setup/fluent-operator-crd.yaml b/manifests/setup/fluent-operator-crd.yaml index 3b1eb1f99..7287371ef 100644 --- a/manifests/setup/fluent-operator-crd.yaml +++ b/manifests/setup/fluent-operator-crd.yaml @@ -34033,8 +34033,7 @@ spec: minimum: 1 type: integer compress: - description: Set payload compression mechanism. Option available - is 'gzip' + description: Set payload compression mechanism. Option available is 'gzip' enum: - gzip type: string diff --git a/manifests/setup/setup.yaml b/manifests/setup/setup.yaml index 1624e8397..0828351e5 100644 --- a/manifests/setup/setup.yaml +++ b/manifests/setup/setup.yaml @@ -5197,8 +5197,7 @@ spec: minimum: 1 type: integer compress: - description: Set payload compression mechanism. Option available - is 'gzip' + description: Set payload compression mechanism. Option available is 'gzip' type: string requireAckResponse: description: |- From 9826811ab299f4eb4c5d2c9a954b810c9feb52a2 Mon Sep 17 00:00:00 2001 From: Ravi Ghosh Date: Sat, 8 Mar 2025 02:14:32 +0530 Subject: [PATCH 09/20] fix typo Signed-off-by: devBmc --- manifests/setup/fluent-operator-crd.yaml | 3 +-- manifests/setup/setup.yaml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/manifests/setup/fluent-operator-crd.yaml b/manifests/setup/fluent-operator-crd.yaml index 7287371ef..d6cff3703 100644 --- a/manifests/setup/fluent-operator-crd.yaml +++ b/manifests/setup/fluent-operator-crd.yaml @@ -5197,8 +5197,7 @@ spec: minimum: 1 type: integer compress: - description: Set payload compression mechanism. Option available - is 'gzip' + description: Set payload compression mechanism. Option available is 'gzip' enum: - gzip type: string diff --git a/manifests/setup/setup.yaml b/manifests/setup/setup.yaml index 0828351e5..009a6c81d 100644 --- a/manifests/setup/setup.yaml +++ b/manifests/setup/setup.yaml @@ -5197,7 +5197,7 @@ spec: minimum: 1 type: integer compress: - description: Set payload compression mechanism. Option available is 'gzip' + description: Set payload compression mechanism. Option available is 'gzip' type: string requireAckResponse: description: |- From 38076f93ab93204d9fbd0860f09b4ba9e51828a2 Mon Sep 17 00:00:00 2001 From: Ravi Ghosh Date: Sat, 8 Mar 2025 13:47:02 +0530 Subject: [PATCH 10/20] adding signoff Signed-off-by: Ravi Ghosh --- manifests/setup/fluent-operator-crd.yaml | 3 ++- manifests/setup/setup.yaml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/manifests/setup/fluent-operator-crd.yaml b/manifests/setup/fluent-operator-crd.yaml index d6cff3703..8743ac364 100644 --- a/manifests/setup/fluent-operator-crd.yaml +++ b/manifests/setup/fluent-operator-crd.yaml @@ -5197,7 +5197,8 @@ spec: minimum: 1 type: integer compress: - description: Set payload compression mechanism. Option available is 'gzip' + description: Set payload compression mechanism. Option available + is 'gzip' enum: - gzip type: string diff --git a/manifests/setup/setup.yaml b/manifests/setup/setup.yaml index 009a6c81d..d1c22fab9 100644 --- a/manifests/setup/setup.yaml +++ b/manifests/setup/setup.yaml @@ -5197,7 +5197,8 @@ spec: minimum: 1 type: integer compress: - description: Set payload compression mechanism. Option available is 'gzip' + description: Set payload compression mechanism. Option available + is 'gzip' type: string requireAckResponse: description: |- From 02151254d6efa7d15b718235f5916c87988314f8 Mon Sep 17 00:00:00 2001 From: Ravi Ghosh Date: Thu, 6 Mar 2025 19:14:16 +0530 Subject: [PATCH 11/20] support for Compress in Forward Output Plugin Signed-off-by: Ravi Ghosh Signed-off-by: Ravi Ghosh --- apis/fluentbit/v1alpha2/plugins/output/forward_types.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apis/fluentbit/v1alpha2/plugins/output/forward_types.go b/apis/fluentbit/v1alpha2/plugins/output/forward_types.go index cac9cc0f7..0ea04ed57 100644 --- a/apis/fluentbit/v1alpha2/plugins/output/forward_types.go +++ b/apis/fluentbit/v1alpha2/plugins/output/forward_types.go @@ -30,6 +30,9 @@ type Forward struct { // Enables at-least-once and receiving server can control rate of traffic. // (Requires Fluentd v0.14.0+ server) RequireAckResponse *bool `json:"requireAckResponse,omitempty"` + // Set payload compression mechanism. Option available is 'gzip' + // +kubebuilder:validation:Enum=gzip + Compress string `json:"compress,omitempty"` // A key string known by the remote Fluentd used for authorization. SharedKey string `json:"sharedKey,omitempty"` // Use this option to connect to Fluentd with a zero-length secret. @@ -70,6 +73,9 @@ func (f *Forward) Params(sl plugins.SecretLoader) (*params.KVs, error) { if f.RequireAckResponse != nil { kvs.Insert("Require_ack_response", fmt.Sprint(*f.RequireAckResponse)) } + if f.Compress != nil { + kvs.Insert("Compress", fmt.Sprint(*f.Compress)) + } if f.SharedKey != "" { kvs.Insert("Shared_Key", f.SharedKey) } From c594a0c2ac503b4661e4f6e47e3963b1bbae44e3 Mon Sep 17 00:00:00 2001 From: Ravi Ghosh Date: Thu, 6 Mar 2025 19:17:08 +0530 Subject: [PATCH 12/20] Update fluentbit.fluent.io_clusteroutputs.yaml adding support for compress gzip Signed-off-by: Ravi Ghosh Signed-off-by: Ravi Ghosh --- .../crds/fluentbit.fluent.io_clusteroutputs.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/charts/fluent-operator/charts/fluent-bit-crds/crds/fluentbit.fluent.io_clusteroutputs.yaml b/charts/fluent-operator/charts/fluent-bit-crds/crds/fluentbit.fluent.io_clusteroutputs.yaml index a8ad2998a..f67e1cc5b 100644 --- a/charts/fluent-operator/charts/fluent-bit-crds/crds/fluentbit.fluent.io_clusteroutputs.yaml +++ b/charts/fluent-operator/charts/fluent-bit-crds/crds/fluentbit.fluent.io_clusteroutputs.yaml @@ -1147,6 +1147,12 @@ spec: maximum: 65535 minimum: 1 type: integer + compress: + description: Set payload compression mechanism. Option available + is 'gzip' + enum: + - gzip + type: string requireAckResponse: description: |- Send "chunk"-option and wait for "ack" response from server. From 18846bbcabbb4cff7fc54e6ff7039269222fe8bd Mon Sep 17 00:00:00 2001 From: Ravi Ghosh Date: Thu, 6 Mar 2025 19:20:10 +0530 Subject: [PATCH 13/20] support for compress in forward output plugin Signed-off-by: Ravi Ghosh Signed-off-by: Ravi Ghosh --- .../fluent-bit-crds/crds/fluentbit.fluent.io_outputs.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/charts/fluent-operator/charts/fluent-bit-crds/crds/fluentbit.fluent.io_outputs.yaml b/charts/fluent-operator/charts/fluent-bit-crds/crds/fluentbit.fluent.io_outputs.yaml index d99653d39..29750806c 100644 --- a/charts/fluent-operator/charts/fluent-bit-crds/crds/fluentbit.fluent.io_outputs.yaml +++ b/charts/fluent-operator/charts/fluent-bit-crds/crds/fluentbit.fluent.io_outputs.yaml @@ -1147,6 +1147,12 @@ spec: maximum: 65535 minimum: 1 type: integer + compress: + description: Set payload compression mechanism. Option available + is 'gzip' + enum: + - gzip + type: string requireAckResponse: description: |- Send "chunk"-option and wait for "ack" response from server. From 517c25a7f410375569bb33d411c4c2ca19efefbd Mon Sep 17 00:00:00 2001 From: Ravi Ghosh Date: Thu, 6 Mar 2025 19:24:08 +0530 Subject: [PATCH 14/20] support for Compress in Forward Output Plugin Signed-off-by: Ravi Ghosh Signed-off-by: Ravi Ghosh --- config/crd/bases/fluentbit.fluent.io_clusteroutputs.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/crd/bases/fluentbit.fluent.io_clusteroutputs.yaml b/config/crd/bases/fluentbit.fluent.io_clusteroutputs.yaml index a8ad2998a..f67e1cc5b 100644 --- a/config/crd/bases/fluentbit.fluent.io_clusteroutputs.yaml +++ b/config/crd/bases/fluentbit.fluent.io_clusteroutputs.yaml @@ -1147,6 +1147,12 @@ spec: maximum: 65535 minimum: 1 type: integer + compress: + description: Set payload compression mechanism. Option available + is 'gzip' + enum: + - gzip + type: string requireAckResponse: description: |- Send "chunk"-option and wait for "ack" response from server. From b9b7de4ca11a4401958cff1a839c9ef145dbb849 Mon Sep 17 00:00:00 2001 From: Ravi Ghosh Date: Thu, 6 Mar 2025 19:25:49 +0530 Subject: [PATCH 15/20] support for Compress in Forward Output Plugin Signed-off-by: Ravi Ghosh Signed-off-by: Ravi Ghosh --- config/crd/bases/fluentbit.fluent.io_outputs.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/crd/bases/fluentbit.fluent.io_outputs.yaml b/config/crd/bases/fluentbit.fluent.io_outputs.yaml index d99653d39..29750806c 100644 --- a/config/crd/bases/fluentbit.fluent.io_outputs.yaml +++ b/config/crd/bases/fluentbit.fluent.io_outputs.yaml @@ -1147,6 +1147,12 @@ spec: maximum: 65535 minimum: 1 type: integer + compress: + description: Set payload compression mechanism. Option available + is 'gzip' + enum: + - gzip + type: string requireAckResponse: description: |- Send "chunk"-option and wait for "ack" response from server. From 43fbe31ab0fce12356433254aba396e7d82c6ad0 Mon Sep 17 00:00:00 2001 From: Ravi Ghosh Date: Thu, 6 Mar 2025 19:27:48 +0530 Subject: [PATCH 16/20] support for Compress in Forward Output Plugin Signed-off-by: Ravi Ghosh Signed-off-by: Ravi Ghosh --- docs/plugins/fluentbit/output/forward.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/plugins/fluentbit/output/forward.md b/docs/plugins/fluentbit/output/forward.md index f58e0d095..4622faf1e 100644 --- a/docs/plugins/fluentbit/output/forward.md +++ b/docs/plugins/fluentbit/output/forward.md @@ -10,6 +10,7 @@ Forward is the protocol used by Fluentd to route messages between peers.
| tag | Overwrite the tag as we transmit. This allows the receiving pipeline start fresh, or to attribute source. | string | | timeAsInteger | Set timestamps in integer format, it enable compatibility mode for Fluentd v0.12 series. | *bool | | sendOptions | Always send options (with \"size\"=count of messages) | *bool | +| compress | Set payload compression mechanism. Option available is 'gzip' | string | | requireAckResponse | Send \"chunk\"-option and wait for \"ack\" response from server. Enables at-least-once and receiving server can control rate of traffic. (Requires Fluentd v0.14.0+ server) | *bool | | sharedKey | A key string known by the remote Fluentd used for authorization. | string | | emptySharedKey | Use this option to connect to Fluentd with a zero-length secret. | *bool | From b41f54c3cf09ad0f40dde8b4ae50429d5602f121 Mon Sep 17 00:00:00 2001 From: Ravi Ghosh Date: Fri, 7 Mar 2025 19:28:18 +0530 Subject: [PATCH 17/20] support for Compress in forward output plugin Signed-off-by: Ravi Ghosh --- manifests/setup/fluent-operator-crd.yaml | 12 ++++++++++++ manifests/setup/setup.yaml | 10 ++++++++++ 2 files changed, 22 insertions(+) diff --git a/manifests/setup/fluent-operator-crd.yaml b/manifests/setup/fluent-operator-crd.yaml index ab042655d..3b1eb1f99 100644 --- a/manifests/setup/fluent-operator-crd.yaml +++ b/manifests/setup/fluent-operator-crd.yaml @@ -5196,6 +5196,12 @@ spec: maximum: 65535 minimum: 1 type: integer + compress: + description: Set payload compression mechanism. Option available + is 'gzip' + enum: + - gzip + type: string requireAckResponse: description: |- Send "chunk"-option and wait for "ack" response from server. @@ -34026,6 +34032,12 @@ spec: maximum: 65535 minimum: 1 type: integer + compress: + description: Set payload compression mechanism. Option available + is 'gzip' + enum: + - gzip + type: string requireAckResponse: description: |- Send "chunk"-option and wait for "ack" response from server. diff --git a/manifests/setup/setup.yaml b/manifests/setup/setup.yaml index 8f0bde87b..1624e8397 100644 --- a/manifests/setup/setup.yaml +++ b/manifests/setup/setup.yaml @@ -5196,6 +5196,10 @@ spec: maximum: 65535 minimum: 1 type: integer + compress: + description: Set payload compression mechanism. Option available + is 'gzip' + type: string requireAckResponse: description: |- Send "chunk"-option and wait for "ack" response from server. @@ -34026,6 +34030,12 @@ spec: maximum: 65535 minimum: 1 type: integer + compress: + description: Set payload compression mechanism. Option available + is 'gzip' + enum: + - gzip + type: string requireAckResponse: description: |- Send "chunk"-option and wait for "ack" response from server. From 645f576cd0b79fd2ed98179c01b83e2afccc6d8a Mon Sep 17 00:00:00 2001 From: Ravi Ghosh Date: Sat, 8 Mar 2025 01:07:18 +0530 Subject: [PATCH 18/20] text change Signed-off-by: Ravi Ghosh Signed-off-by: Ravi Ghosh --- manifests/setup/fluent-operator-crd.yaml | 3 +-- manifests/setup/setup.yaml | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/manifests/setup/fluent-operator-crd.yaml b/manifests/setup/fluent-operator-crd.yaml index 3b1eb1f99..7287371ef 100644 --- a/manifests/setup/fluent-operator-crd.yaml +++ b/manifests/setup/fluent-operator-crd.yaml @@ -34033,8 +34033,7 @@ spec: minimum: 1 type: integer compress: - description: Set payload compression mechanism. Option available - is 'gzip' + description: Set payload compression mechanism. Option available is 'gzip' enum: - gzip type: string diff --git a/manifests/setup/setup.yaml b/manifests/setup/setup.yaml index 1624e8397..0828351e5 100644 --- a/manifests/setup/setup.yaml +++ b/manifests/setup/setup.yaml @@ -5197,8 +5197,7 @@ spec: minimum: 1 type: integer compress: - description: Set payload compression mechanism. Option available - is 'gzip' + description: Set payload compression mechanism. Option available is 'gzip' type: string requireAckResponse: description: |- From 49467d3f6eb4522604a445ea251040fe8238a55a Mon Sep 17 00:00:00 2001 From: Ravi Ghosh Date: Sat, 8 Mar 2025 02:14:32 +0530 Subject: [PATCH 19/20] fix typo Signed-off-by: devBmc Signed-off-by: Ravi Ghosh --- manifests/setup/fluent-operator-crd.yaml | 3 +-- manifests/setup/setup.yaml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/manifests/setup/fluent-operator-crd.yaml b/manifests/setup/fluent-operator-crd.yaml index 7287371ef..d6cff3703 100644 --- a/manifests/setup/fluent-operator-crd.yaml +++ b/manifests/setup/fluent-operator-crd.yaml @@ -5197,8 +5197,7 @@ spec: minimum: 1 type: integer compress: - description: Set payload compression mechanism. Option available - is 'gzip' + description: Set payload compression mechanism. Option available is 'gzip' enum: - gzip type: string diff --git a/manifests/setup/setup.yaml b/manifests/setup/setup.yaml index 0828351e5..009a6c81d 100644 --- a/manifests/setup/setup.yaml +++ b/manifests/setup/setup.yaml @@ -5197,7 +5197,7 @@ spec: minimum: 1 type: integer compress: - description: Set payload compression mechanism. Option available is 'gzip' + description: Set payload compression mechanism. Option available is 'gzip' type: string requireAckResponse: description: |- From e14ab29ab170d62e878ba43c7a59c39f1f040203 Mon Sep 17 00:00:00 2001 From: Ravi Ghosh Date: Sat, 8 Mar 2025 13:47:02 +0530 Subject: [PATCH 20/20] adding signoff Signed-off-by: Ravi Ghosh --- manifests/setup/fluent-operator-crd.yaml | 3 ++- manifests/setup/setup.yaml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/manifests/setup/fluent-operator-crd.yaml b/manifests/setup/fluent-operator-crd.yaml index d6cff3703..8743ac364 100644 --- a/manifests/setup/fluent-operator-crd.yaml +++ b/manifests/setup/fluent-operator-crd.yaml @@ -5197,7 +5197,8 @@ spec: minimum: 1 type: integer compress: - description: Set payload compression mechanism. Option available is 'gzip' + description: Set payload compression mechanism. Option available + is 'gzip' enum: - gzip type: string diff --git a/manifests/setup/setup.yaml b/manifests/setup/setup.yaml index 009a6c81d..d1c22fab9 100644 --- a/manifests/setup/setup.yaml +++ b/manifests/setup/setup.yaml @@ -5197,7 +5197,8 @@ spec: minimum: 1 type: integer compress: - description: Set payload compression mechanism. Option available is 'gzip' + description: Set payload compression mechanism. Option available + is 'gzip' type: string requireAckResponse: description: |-