Skip to content

Commit bbef08c

Browse files
authored
Merge pull request #239 from wenchajun/crd
Refining the crd of helm
2 parents 7675c0a + e3fe78f commit bbef08c

5 files changed

+2257
-90
lines changed

charts/fluentbit-operator/crds/logging.kubesphere.io_filter.yaml

+76-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,45 @@ spec:
3939
description: A set of filter plugins in order.
4040
items:
4141
properties:
42+
aws:
43+
description: Aws defines a Aws configuration.
44+
properties:
45+
accountID:
46+
description: The account ID for current EC2 instance.Default
47+
is false.
48+
type: boolean
49+
amiID:
50+
description: The EC2 instance image id.Default is false.
51+
type: boolean
52+
az:
53+
description: The availability zone; for example, "us-east-1a".
54+
Default is true.
55+
type: boolean
56+
ec2InstanceID:
57+
description: The EC2 instance ID.Default is true.
58+
type: boolean
59+
ec2InstanceType:
60+
description: The EC2 instance type.Default is false.
61+
type: boolean
62+
hostName:
63+
description: The hostname for current EC2 instance.Default
64+
is false.
65+
type: boolean
66+
imdsVersion:
67+
description: Specify which version of the instance metadata
68+
service to use. Valid values are 'v1' or 'v2'.
69+
enum:
70+
- v1
71+
- v2
72+
type: string
73+
privateIP:
74+
description: The EC2 instance private ip.Default is false.
75+
type: boolean
76+
vpcID:
77+
description: The VPC ID for current EC2 instance.Default
78+
is false.
79+
type: boolean
80+
type: object
4281
grep:
4382
description: Grep defines Grep Filter configuration.
4483
properties:
@@ -324,6 +363,24 @@ spec:
324363
type: object
325364
type: array
326365
type: object
366+
multiline:
367+
description: Multiline defines a Multiline configuration.
368+
properties:
369+
keyContent:
370+
description: Key name that holds the content to process.
371+
Note that a Multiline Parser definition can already specify
372+
the key_content to use, but this option allows to overwrite
373+
that value for the purpose of the filter.
374+
type: string
375+
parser:
376+
description: Specify one or multiple Multiline Parsing definitions
377+
to apply to the content. You can specify multiple multiline
378+
parsers to detect different formats by separating them
379+
with a comma.
380+
type: string
381+
required:
382+
- parser
383+
type: object
327384
nest:
328385
description: Nest defines Nest Filter configuration.
329386
properties:
@@ -397,6 +454,24 @@ spec:
397454
type: string
398455
type: array
399456
type: object
457+
rewriteTag:
458+
description: RewriteTag defines a RewriteTag configuration.
459+
properties:
460+
emitterName:
461+
description: When the filter emits a record under the new
462+
Tag, there is an internal emitter plugin that takes care
463+
of the job. Since this emitter expose metrics as any other
464+
component of the pipeline, you can use this property to
465+
configure an optional name for it.
466+
type: string
467+
rules:
468+
description: 'Defines the matching criteria and the format
469+
of the Tag for the matching record. The Rule format have
470+
four components: KEY REGEX NEW_TAG KEEP.'
471+
items:
472+
type: string
473+
type: array
474+
type: object
400475
throttle:
401476
description: Throttle defines a Throttle configuration.
402477
properties:
@@ -424,7 +499,7 @@ spec:
424499
type: array
425500
match:
426501
description: A pattern to match against the tags of incoming records.
427-
It's case sensitive and support the star (*) character as a wildcard.
502+
It's case-sensitive and support the star (*) character as a wildcard.
428503
type: string
429504
matchRegex:
430505
description: A regular expression to match against the tags of incoming

0 commit comments

Comments
 (0)