Skip to content
This repository has been archived by the owner on Apr 24, 2023. It is now read-only.

add option to enable TLS via environment variable #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions output/elasticsearch/fluent-bit-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ data:
Match *
Host ${FLUENT_ELASTICSEARCH_HOST}
Port ${FLUENT_ELASTICSEARCH_PORT}
tls ${FLUENT_ELASTICSEARCH_TLS}
Logstash_Format On
Retry_Limit False

Expand Down
2 changes: 2 additions & 0 deletions output/elasticsearch/fluent-bit-ds-minikube.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ spec:
value: "elasticsearch"
- name: FLUENT_ELASTICSEARCH_PORT
value: "9200"
- name: FLUENT_ELASTICSEARCH_TLS
value: "Off"
volumeMounts:
- name: varlog
mountPath: /var/log
Expand Down