Skip to content

Commit ffac24f

Browse files
committed
bump version to 2.1.1
1 parent e7ac3a5 commit ffac24f

File tree

7 files changed

+110
-4
lines changed

7 files changed

+110
-4
lines changed

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

charts/logging-operator/templates/logging.banzaicloud.io_clusterflows.yaml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,18 @@ spec:
3636
items:
3737
description: Filter definition for FlowSpec
3838
properties:
39+
dedot:
40+
description: More info at https://github.com/lunardial/fluent-plugin-dedot_filter
41+
properties:
42+
de_dot_nested:
43+
description: Will cause the plugin to recurse through nested
44+
structures (hashes and arrays), and remove dots in those
45+
key-names too.
46+
type: boolean
47+
de_dot_separator:
48+
description: Separator (default:_)
49+
type: string
50+
type: object
3951
parser:
4052
description: https://docs.fluentd.org/filter/parser
4153
properties:
@@ -99,6 +111,40 @@ spec:
99111
required:
100112
- key_name
101113
type: object
114+
record_transformer:
115+
properties:
116+
auto_typecast:
117+
description: 'Use original value type. (default: true)'
118+
type: boolean
119+
enable_ruby:
120+
description: 'When set to true, the full Ruby syntax is enabled
121+
in the ${...} expression. (default: false)'
122+
type: boolean
123+
keep_keys:
124+
description: A comma-delimited list of keys to keep.
125+
type: string
126+
records:
127+
description: 'Add records docs at: https://docs.fluentd.org/filter/record_transformer
128+
Records are represented as maps: `key: value`'
129+
items:
130+
additionalProperties:
131+
type: string
132+
description: Parameters inside record directives are considered
133+
to be new key-value pairs
134+
type: object
135+
type: array
136+
remove_keys:
137+
description: A comma-delimited list of keys to delete
138+
type: string
139+
renew_record:
140+
description: 'Create new Hash to transform incoming data (default:
141+
false)'
142+
type: boolean
143+
renew_time_key:
144+
description: Specify field name of the record to overwrite
145+
the time of events. Its value must be unix time.
146+
type: string
147+
type: object
102148
stdout:
103149
type: object
104150
tag_normaliser:

charts/logging-operator/templates/logging.banzaicloud.io_clusteroutputs.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -669,6 +669,13 @@ spec:
669669
items:
670670
type: string
671671
type: array
672+
file:
673+
properties:
674+
path:
675+
type: string
676+
required:
677+
- path
678+
type: object
672679
forward:
673680
properties:
674681
ack_response_timeout:

charts/logging-operator/templates/logging.banzaicloud.io_flows.yaml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,18 @@ spec:
4141
items:
4242
description: Filter definition for FlowSpec
4343
properties:
44+
dedot:
45+
description: More info at https://github.com/lunardial/fluent-plugin-dedot_filter
46+
properties:
47+
de_dot_nested:
48+
description: Will cause the plugin to recurse through nested
49+
structures (hashes and arrays), and remove dots in those
50+
key-names too.
51+
type: boolean
52+
de_dot_separator:
53+
description: Separator (default:_)
54+
type: string
55+
type: object
4456
parser:
4557
description: https://docs.fluentd.org/filter/parser
4658
properties:
@@ -104,6 +116,40 @@ spec:
104116
required:
105117
- key_name
106118
type: object
119+
record_transformer:
120+
properties:
121+
auto_typecast:
122+
description: 'Use original value type. (default: true)'
123+
type: boolean
124+
enable_ruby:
125+
description: 'When set to true, the full Ruby syntax is enabled
126+
in the ${...} expression. (default: false)'
127+
type: boolean
128+
keep_keys:
129+
description: A comma-delimited list of keys to keep.
130+
type: string
131+
records:
132+
description: 'Add records docs at: https://docs.fluentd.org/filter/record_transformer
133+
Records are represented as maps: `key: value`'
134+
items:
135+
additionalProperties:
136+
type: string
137+
description: Parameters inside record directives are considered
138+
to be new key-value pairs
139+
type: object
140+
type: array
141+
remove_keys:
142+
description: A comma-delimited list of keys to delete
143+
type: string
144+
renew_record:
145+
description: 'Create new Hash to transform incoming data (default:
146+
false)'
147+
type: boolean
148+
renew_time_key:
149+
description: Specify field name of the record to overwrite
150+
the time of events. Its value must be unix time.
151+
type: string
152+
type: object
107153
stdout:
108154
type: object
109155
tag_normaliser:

charts/logging-operator/templates/logging.banzaicloud.io_outputs.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -665,6 +665,13 @@ spec:
665665
required:
666666
- ssl_verify
667667
type: object
668+
file:
669+
properties:
670+
path:
671+
type: string
672+
required:
673+
- path
674+
type: object
668675
forward:
669676
properties:
670677
ack_response_timeout:

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: banzaicloud/logging-operator
9-
tag: 2.1.0
9+
tag: 2.1.1
1010
pullPolicy: IfNotPresent
1111

1212
imagePullSecrets: []

docs/deploy/manifests/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spec:
1414
spec:
1515
containers:
1616
- name: logging-operator
17-
image: "banzaicloud/logging-operator:2.1.0"
17+
image: "banzaicloud/logging-operator:2.1.1"
1818
imagePullPolicy: IfNotPresent
1919
resources:
2020
{}

0 commit comments

Comments
 (0)