Skip to content

Commit

Permalink
fix(logshipper): default output did not match (#381)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvoGoman authored Sep 6, 2024
1 parent a9ac299 commit 0d12548
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion logshipper/chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: logshipper
description: A Helm chart for deploying fluent-bit with custom config

type: application
version: 0.2.1
version: 0.2.2
appVersion: 3.0.4

dependencies:
Expand Down
6 changes: 3 additions & 3 deletions logshipper/chart/templates/fluent-bit-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ data:
Name tail
Path /var/log/containers/*.log
Parser {{ default "cri" ( index .Values "fluent-bit" "parser" ) }}
Tag default_kube.*
Tag default_kube
Refresh_Interval 5
Mem_Buf_Limit 50MB
Skip_Long_Lines Off
Expand All @@ -37,7 +37,7 @@ data:
[INPUT]
Name systemd
Path /var/log/journal
Tag default_systemd.*
Tag default_systemd
Mem_Buf_Limit 5MB
Read_From_Tail On
DB /var/log/fluent-bit-journal.pos.db
Expand Down Expand Up @@ -105,7 +105,7 @@ data:
{{ if index .Values "fluent-bit" "backend" "opensearch" "enabled" }}
[OUTPUT]
Name opensearch
Match default.*
Match default_*
Host {{ index .Values "fluent-bit" "backend" "opensearch" "host" }}
Port {{ index .Values "fluent-bit" "backend" "opensearch" "port" }}
Logstash_Format On
Expand Down
4 changes: 2 additions & 2 deletions logshipper/plugindefinition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ kind: PluginDefinition
metadata:
name: logshipper
spec:
version: 0.2.1
version: 0.2.2
displayName: Fluent-bit Logshipper
description: Logshipping of container logs and systemd with fluent-bit
icon: https://raw.githubusercontent.com/fluent/fluent-bit/master/fluentbit_logo.png
helmChart:
name: logshipper
repository: oci://ghcr.io/cloudoperators/greenhouse-extensions/charts
version: 0.2.1
version: 0.2.2
options:
- name: fluent-bit.parser
description: Parser used for container logs. [docker|cri]
Expand Down

0 comments on commit 0d12548

Please sign in to comment.