-
Notifications
You must be signed in to change notification settings - Fork 466
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update fluent-operator from v2.0.1 to v2.1.0 (#327)
* Update fluent-operator from v2.0.1 to v2.1.0 Signed-off-by: Tomáš Novák <[email protected]> * Revert chart.yaml and bump up only versions Signed-off-by: Tomáš Novák <[email protected]> * Fix fluent-operator lint errors Signed-off-by: Tomáš Novák <[email protected]> --------- Signed-off-by: Tomáš Novák <[email protected]>
- Loading branch information
Showing
17 changed files
with
950 additions
and
157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
362 changes: 362 additions & 0 deletions
362
charts/fluent-operator/crds/fluentbit.fluent.io_clusteroutputs.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
190 changes: 151 additions & 39 deletions
190
charts/fluent-operator/crds/fluentbit.fluent.io_collectors.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
227 changes: 184 additions & 43 deletions
227
charts/fluent-operator/crds/fluentbit.fluent.io_fluentbits.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
charts/fluent-operator/templates/fluentbit-output-opensearch.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{{- if .Values.Kubernetes -}} | ||
{{- if .Values.fluentbit.output.opensearch -}} | ||
apiVersion: fluentbit.fluent.io/v1alpha2 | ||
kind: ClusterOutput | ||
metadata: | ||
name: fluentd-output-opensearch | ||
labels: | ||
fluentbit.fluent.io/enabled: "true" | ||
fluentbit.fluent.io/component: logging | ||
spec: | ||
matchRegex: (?:kube|service)\.(.*) | ||
opensearch: | ||
{{ toYaml .Values.fluentbit.output.opensearch | indent 4}} | ||
{{- end }} | ||
{{- end }} |
15 changes: 15 additions & 0 deletions
15
charts/fluent-operator/templates/fluentbit-output-opentelemetry.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{{- if .Values.Kubernetes -}} | ||
{{- if .Values.fluentbit.output.opentelemetry -}} | ||
apiVersion: fluentbit.fluent.io/v1alpha2 | ||
kind: ClusterOutput | ||
metadata: | ||
name: fluentd-output-opentelemetry | ||
labels: | ||
fluentbit.fluent.io/enabled: "true" | ||
fluentbit.fluent.io/component: logging | ||
spec: | ||
matchRegex: (?:kube|service)\.(.*) | ||
opentelemetry: | ||
{{ toYaml .Values.fluentbit.output.opentelemetry | indent 4}} | ||
{{- end }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.