Skip to content

Commit

Permalink
update fluent-operator to v3.0.0 (#525)
Browse files Browse the repository at this point in the history
* update fluent-operator to v3.0.0

Signed-off-by: dehaocheng <[email protected]>

* delete some files

Signed-off-by: dehaocheng <[email protected]>

* fix

Signed-off-by: dehaocheng <[email protected]>

* fix

Signed-off-by: dehaocheng <[email protected]>

---------

Signed-off-by: dehaocheng <[email protected]>
  • Loading branch information
wenchajun authored Jul 9, 2024
1 parent 62b7349 commit bdf4525
Show file tree
Hide file tree
Showing 36 changed files with 10,732 additions and 8,357 deletions.
8 changes: 4 additions & 4 deletions charts/fluent-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ keywords:
- fluent-bit
- fluentd
- operator
version: 2.9.0
appVersion: 2.9.0
version: 3.0.0
appVersion: 3.0.0
icon: https://raw.githubusercontent.com/fluent/fluent-operator/master/docs/images/fluent-operator-icon.svg
home: https://www.fluentd.org/
sources:
Expand All @@ -18,9 +18,9 @@ maintainers:
dependencies:
- name: fluent-bit-crds
repository: "file://charts/fluent-bit-crds"
version: 2.9.0
version: 3.0.0
condition: fluentbit.crdsEnable
- name: fluentd-crds
repository: "file://charts/fluentd-crds"
version: 2.9.0
version: 3.0.0
condition: fluentd.crdsEnable
4 changes: 2 additions & 2 deletions charts/fluent-operator/charts/fluent-bit-crds/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ keywords:
- logging
- fluent-bit
- operator
version: 2.9.0
appVersion: "2.9.0"
version: 3.0.0
appVersion: "3.0.0"
sources:
- https://github.com/fluent/fluent-operator
maintainers:
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.11.3
creationTimestamp: null
controller-gen.kubebuilder.io/version: v0.15.0
name: clustermultilineparsers.fluentbit.fluent.io
spec:
group: fluentbit.fluent.io
Expand All @@ -24,14 +23,19 @@ spec:
parser API
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the latest
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
description: |-
APIVersion defines the versioned schema of this representation of an object.
Servers should convert recognized schemas to the latest internal value, and
may reject unrecognized values.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
description: 'Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the client
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
description: |-
Kind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
type: object
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.11.3
creationTimestamp: null
controller-gen.kubebuilder.io/version: v0.15.0
name: clusterparsers.fluentbit.fluent.io
spec:
group: fluentbit.fluent.io
Expand All @@ -23,36 +22,40 @@ spec:
description: ClusterParser is the Schema for the cluster-level parsers API
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the latest
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
description: |-
APIVersion defines the versioned schema of this representation of an object.
Servers should convert recognized schemas to the latest internal value, and
may reject unrecognized values.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
description: 'Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the client
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
description: |-
Kind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
type: object
spec:
description: ParserSpec defines the desired state of ClusterParser
properties:
decoders:
description: 'Decoders are a built-in feature available through the
Parsers file, each Parser definition can optionally set one or multiple
decoders. There are two type of decoders type: Decode_Field and
Decode_Field_As.'
description: |-
Decoders are a built-in feature available through the Parsers file, each Parser definition can optionally set one or multiple decoders.
There are two type of decoders type: Decode_Field and Decode_Field_As.
items:
properties:
decodeField:
description: If the content can be decoded in a structured message,
append that structure message (keys and values) to the original
log message.
description: |-
If the content can be decoded in a structured message,
append that structure message (keys and values) to the original log message.
type: string
decodeFieldAs:
description: Any content decoded (unstructured or structured)
will be replaced in the same key/value, no extra keys are
added.
description: |-
Any content decoded (unstructured or structured) will be replaced in the same key/value,
no extra keys are added.
type: string
type: object
type: array
Expand Down
Loading

0 comments on commit bdf4525

Please sign in to comment.