Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,12 @@ spec:
index: {{ . | quote }}
{{- end }}
{{- with .Values.fluentbit.output.es.httpUser }}
httpUser: {{ . | quote }}
httpUser:
{{- toYaml . | nindent 6 }}
{{- end }}
{{- with .Values.fluentbit.output.es.httpPassword }}
httpPassword: {{ . | quote }}
httpPassword:
{{- toYaml . | nindent 6 }}
{{- end }}
logstashFormat: {{ .Values.fluentbit.output.es.logstashFormat | default true }}
{{- with .Values.fluentbit.output.es.logstashPrefix }}
Expand Down
53 changes: 30 additions & 23 deletions charts/fluent-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -305,26 +305,33 @@ fluentbit:
logstashPrefix: ks-logstash-log
bufferSize: 20MB
traceError: true
# logstashPrefixKey: ks-logstash-log
# suppressTypeName: "On"
# path: ""
# bufferSize: "4KB"
# index: "fluent-bit"
# httpUser:
# httpPassword:
# logstashFormat: true
# replaceDots: false
# writeOperation: upsert
# tls:
# enable: false
# verify: On
# debug: 1
# caFile: "<Absolute path to CA certificate file>"
# caPath: "<Absolute path to scan for certificate files>"
# crtFile: "<Absolute path to private Key file>"
# keyFile: "<Absolute path to private Key file>"
# keyPassword:
# vhost: "<Hostname to be used for TLS SNI extension>"
# logstashPrefixKey: ks-logstash-log
# suppressTypeName: "On"
# path: ""
# index: "fluent-bit"
# httpUser:
# valueFrom:
# secretKeyRef:
# key: value
# name: husersecret
# httpPassword:
# valueFrom:
# secretKeyRef:
# key: value
# name: hpasssecret
# logstashFormat: true
# replaceDots: false
# writeOperation: upsert
# tls:
# enable: false
# verify: On
# debug: 1
# caFile: "<Absolute path to CA certificate file>"
# caPath: "<Absolute path to scan for certificate files>"
# crtFile: "<Absolute path to private Key file>"
# keyFile: "<Absolute path to private Key file>"
# keyPassword:
# vhost: "<Hostname to be used for TLS SNI extension>"
kafka:
enable: false
logLevel: info
Expand All @@ -351,11 +358,11 @@ fluentbit:
# See https://docs.fluentbit.io/manual/pipeline/outputs/loki
loki:
# Switch for generation of fluentbit loki ClusterOutput (and loki basic auth http user and pass secrets if required)
enable: false # Bool
enable: false # Bool
retryLimit: "no_limits"
logLevel: "info"
host: 127.0.0.1 # String
port: 3100 # Int
host: 127.0.0.1 # String
port: 3100 # Int
# Either, give http{User,Password},tenantID string values specifying them directly
httpUser: myuser
httpPassword: mypass
Expand Down
Loading