Skip to content

Commit

Permalink
helm: fix fluentbit reference
Browse files Browse the repository at this point in the history
Signed-off-by: Zadkiel Aharonian <[email protected]>
  • Loading branch information
aslafy-z committed Jul 26, 2023
1 parent a98426a commit 47b0018
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions charts/logging-operator/templates/logging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,38 +20,33 @@ spec:
{{- end }}
{{- if (not .Values.logging.fluentdDisabled) }}
{{- if .Values.logging.fluentd }}
fluentd: {{- .Values.logging.fluentd . | nindent 4 }}
fluentd: {{ toYaml .Values.logging.fluentd | nindent 4 }}
{{- else }}
fluentd: {}
{{- end }}
{{- end }}
{{- with .Values.logging.syslogNG }}
syslogNG:
{{- toYaml . | nindent 4 }}
syslogNG: {{ toYaml . | nindent 4 }}
{{- end }}
{{- with .Values.logging.defaultFlow }}
defaultFlow:
{{- toYaml . | nindent 4 }}
defaultFlow: {{ toYaml . | nindent 4 }}
{{- end }}
{{- with .Values.logging.errorOutputRef }}
errorOutputRef: {{ . }}
{{- end }}
{{- with .Values.logging.globalFilters }}
globalFilters:
{{- toYaml . | nindent 4 }}
globalFilters: {{ toYaml . | nindent 4 }}
{{- end }}
{{- with .Values.logging.watchNamespaces }}
watchNamespaces:
{{- toYaml . | nindent 4 }}
watchNamespaces: {{ toYaml . | nindent 4 }}
{{- end }}
clusterDomain: {{ .Values.logging.clusterDomain }}
controlNamespace: {{ .Values.logging.controlNamespace | default .Release.Namespace }}
{{- with .Values.logging.allowClusterResourcesFromAllNamespaces }}
allowClusterResourcesFromAllNamespaces: {{ . }}
{{- end }}
{{- with .Values.logging.nodeAgents }}
nodeAgents:
{{ toYaml . | nindent 4 }}
nodeAgents: {{ toYaml . | nindent 4 }}
{{- end }}
{{- with .Values.logging.enableRecreateWorkloadOnImmutableFieldChange }}
enableRecreateWorkloadOnImmutableFieldChange: {{ . }}
Expand Down

0 comments on commit 47b0018

Please sign in to comment.