Skip to content

Commit

Permalink
[aws-for-fluent-bit] allow filter.mergeLogKey to be optional and expo…
Browse files Browse the repository at this point in the history
…se filter.keepLog value (#339)
  • Loading branch information
jtackaberry authored Mar 30, 2021
1 parent 96fa27f commit 4175077
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
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 @@ -35,7 +35,10 @@ data:
Match {{ .Values.filter.match }}
Kube_URL {{ .Values.filter.kubeURL }}
Merge_Log {{ .Values.filter.mergeLog }}
{{- if .Values.filter.mergeLogKey }}
Merge_Log_Key {{ .Values.filter.mergeLogKey }}
{{- end }}
Keep_Log {{ .Values.filter.keepLog }}
K8S-Logging.Parser {{ .Values.filter.k8sLoggingParser }}
K8S-Logging.Exclude {{ .Values.filter.k8sLoggingExclude }}

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 @@ -41,6 +41,7 @@ filter:
kubeURL: "https://kubernetes.default.svc.cluster.local:443"
mergeLog: "On"
mergeLogKey: "data"
keepLog: "On"
k8sLoggingParser: "On"
k8sLoggingExclude: "On"

Expand Down

0 comments on commit 4175077

Please sign in to comment.