Skip to content

Commit

Permalink
Added Replace_Dots option to fluent-bit Elasticsearch output defaulti…
Browse files Browse the repository at this point in the history
…ng to On (aws#491)

Co-authored-by: David Pujadas <[email protected]>
  • Loading branch information
jasonumiker and dpujadas authored Apr 21, 2021
1 parent 1670a57 commit 481ff2f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion stable/aws-for-fluent-bit/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: aws-for-fluent-bit
description: A Helm chart to deploy aws-for-fluent-bit project
version: 0.1.10
version: 0.1.11
appVersion: 2.13.0
home: https://github.com/aws/eks-charts
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
Expand Down
1 change: 1 addition & 0 deletions stable/aws-for-fluent-bit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ helm delete aws-for-fluent-bit --namespace kube-system
| `elasticsearch.tls` | Enable or disable TLS support | On |
| `elasticsearch.port` | TCP Port of the target service. | 443 |
| `elasticsearch.retryLimit` | Integer value to set the maximum number of retries allowed. N must be >= 1 | 6 |
| `elasticsearch.replaceDots` | Enable or disable Replace_Dots | On |
| `extraOutputs` | Adding more outputs with value | `""` |
| `priorityClassName` | Name of Priority Class to assign pods | |
| `updateStrategy` | Optional update strategy | `type: RollingUpdate` |
Expand Down
3 changes: 3 additions & 0 deletions stable/aws-for-fluent-bit/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,9 @@ data:
{{- if .Values.elasticsearch.retryLimit }}
Retry_Limit {{ .Values.elasticsearch.retryLimit }}
{{- end }}
{{- if .Values.elasticsearch.replaceDots }}
Replace_Dots {{ .Values.elasticsearch.replaceDots }}
{{- end }}
{{- end }}

{{- if .Values.extraOutputs }}
Expand Down
1 change: 1 addition & 0 deletions stable/aws-for-fluent-bit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ elasticsearch:
tls: "On"
port: "443"
retryLimit: 6
replaceDots: "On"

# extraOutputs: |
# [OUTPUT]
Expand Down

0 comments on commit 481ff2f

Please sign in to comment.