Skip to content

Commit a6cdc52

Browse files
joshuabairdclaude
andcommitted
Fix test field casing and regenerate CRDs onto correct chart path
- Fix `workers` -> `Workers` (exported field) in syslog_types_test.go - Regenerate CRD manifests via make manifests; previous commits incorrectly targeted charts/fluent-bit-crds/ (non-existent), now correctly written to charts/fluent-operator-fluent-bit-crds/templates/ Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Signed-off-by: Josh Baird <jbaird@galileo.io>
1 parent c21d907 commit a6cdc52

3 files changed

Lines changed: 13 additions & 1 deletion

File tree

apis/fluentbit/v1alpha2/plugins/output/syslog_types_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func TestOutput_Syslog_Params(t *testing.T) {
3030
SyslogSDKey: "structured_data",
3131
SyslogMessageKey: "message",
3232
TotalLimitSize: "1G",
33-
workers: utils.ToPtr[int32](2),
33+
Workers: utils.ToPtr[int32](2),
3434
}
3535

3636
// Define the expected Key-Value pairs based on your Params() logic

charts/fluent-operator-fluent-bit-crds/templates/fluentbit.fluent.io_clusteroutputs.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4237,6 +4237,12 @@ spec:
42374237
description: Limit the maximum number of Chunks in the filesystem
42384238
for the current output logical destination.
42394239
type: string
4240+
workers:
4241+
description: Enables dedicated thread(s) for this output. Default
4242+
value is set since version 1.8.13. For previous versions is
4243+
0.
4244+
format: int32
4245+
type: integer
42404246
type: object
42414247
tcp:
42424248
description: TCP defines TCP Output configuration.

charts/fluent-operator-fluent-bit-crds/templates/fluentbit.fluent.io_outputs.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4237,6 +4237,12 @@ spec:
42374237
description: Limit the maximum number of Chunks in the filesystem
42384238
for the current output logical destination.
42394239
type: string
4240+
workers:
4241+
description: Enables dedicated thread(s) for this output. Default
4242+
value is set since version 1.8.13. For previous versions is
4243+
0.
4244+
format: int32
4245+
type: integer
42404246
type: object
42414247
tcp:
42424248
description: TCP defines TCP Output configuration.

0 commit comments

Comments
 (0)