mirror of https://git.rancher.io/charts
(dev-v2.6-archive) Fix/issue 33092 (#1254)
* removed rke2 containers logging and added some extra settings to the fluentbit configmap
* charts
(partially cherry picked from commit ba4492b7d4
)
pull/1680/head
parent
d7b9e7e2ba
commit
5537e98926
|
@ -7,11 +7,19 @@ metadata:
|
||||||
{{ include "logging-operator.labels" . | indent 4 }}
|
{{ include "logging-operator.labels" . | indent 4 }}
|
||||||
data:
|
data:
|
||||||
fluent-bit.conf: |
|
fluent-bit.conf: |
|
||||||
|
[SERVICE]
|
||||||
|
Flush 1
|
||||||
|
Grace 5
|
||||||
|
Daemon Off
|
||||||
|
Log_Level info
|
||||||
|
Coro_Stack_Size 24576
|
||||||
|
|
||||||
[INPUT]
|
[INPUT]
|
||||||
Name systemd
|
Name systemd
|
||||||
Tag rke2
|
Tag rke2
|
||||||
Path {{ .Values.systemdLogPath | default "/var/log/journal" }}
|
Path {{ .Values.systemdLogPath | default "/var/log/journal" }}
|
||||||
Systemd_Filter _SYSTEMD_UNIT=rke2-server.service
|
Systemd_Filter _SYSTEMD_UNIT=rke2-server.service
|
||||||
|
Systemd_Filter _SYSTEMD_UNIT=rke2-agent.service
|
||||||
|
|
||||||
[OUTPUT]
|
[OUTPUT]
|
||||||
Name forward
|
Name forward
|
||||||
|
|
|
@ -1,98 +0,0 @@
|
||||||
{{- if .Values.additionalLoggingSources.rke2.enabled }}
|
|
||||||
apiVersion: logging.banzaicloud.io/v1beta1
|
|
||||||
kind: Logging
|
|
||||||
metadata:
|
|
||||||
name: {{ .Release.Name }}-rke2-containers
|
|
||||||
namespace: {{ .Release.Namespace }}
|
|
||||||
spec:
|
|
||||||
controlNamespace: {{ .Release.Namespace }}
|
|
||||||
fluentbit:
|
|
||||||
image:
|
|
||||||
repository: {{ template "system_default_registry" . }}{{ .Values.images.fluentbit.repository }}
|
|
||||||
tag: {{ .Values.images.fluentbit.tag }}
|
|
||||||
inputTail:
|
|
||||||
Tag: "rke2"
|
|
||||||
Path: "/var/log/containers/*rke*.log"
|
|
||||||
{{- if .Values.fluentbit.inputTail.Buffer_Chunk_Size }}
|
|
||||||
Buffer_Chunk_Size: {{ .Values.fluentbit.inputTail.Buffer_Chunk_Size }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.fluentbit.inputTail.Buffer_Max_Size }}
|
|
||||||
Buffer_Max_Size: {{ .Values.fluentbit.inputTail.Buffer_Max_Size }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.fluentbit.inputTail.Mem_Buf_Limit }}
|
|
||||||
Mem_Buf_Limit: {{ .Values.fluentbit.inputTail.Mem_Buf_Limit }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.fluentbit.inputTail.Multiline_Flush }}
|
|
||||||
Multiline_Flush: {{ .Values.fluentbit.inputTail.Multiline_Flush }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.fluentbit.inputTail.Skip_Long_Lines }}
|
|
||||||
Skip_Long_Lines: {{ .Values.fluentbit.inputTail.Skip_Long_Lines }}
|
|
||||||
{{- end }}
|
|
||||||
extraVolumeMounts:
|
|
||||||
- source: "/var/log/containers/"
|
|
||||||
destination: "/var/log/containers/"
|
|
||||||
readOnly: true
|
|
||||||
{{- if not .Values.disablePvc }}
|
|
||||||
{{- with .Values.fluentbit.bufferStorage }}
|
|
||||||
bufferStorage: {{- toYaml . | nindent 6 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.fluentbit.bufferStorageVolume }}
|
|
||||||
bufferStorageVolume: {{- toYaml . | nindent 6 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if or .Values.global.psp.enabled .Values.global.seLinux.enabled }}
|
|
||||||
security:
|
|
||||||
{{- end }}
|
|
||||||
{{- if or .Values.global.psp.enabled }}
|
|
||||||
podSecurityPolicyCreate: true
|
|
||||||
roleBasedAccessControlCreate: true
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.global.seLinux.enabled }}
|
|
||||||
securityContext:
|
|
||||||
seLinuxOptions:
|
|
||||||
type: rke_logreader_t
|
|
||||||
{{- end }}
|
|
||||||
{{- with (concat (.Values.tolerations) (.Values.fluentbit.tolerations)) }}
|
|
||||||
tolerations: {{- toYaml . | nindent 6 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.nodeSelector }}
|
|
||||||
nodeSelector: {{- toYaml . | nindent 6 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.fluentbit.resources }}
|
|
||||||
resources: {{- toYaml . | nindent 6 }}
|
|
||||||
{{- end }}
|
|
||||||
fluentd:
|
|
||||||
image:
|
|
||||||
repository: {{ template "system_default_registry" . }}{{ .Values.images.fluentd.repository }}
|
|
||||||
tag: {{ .Values.images.fluentd.tag }}
|
|
||||||
configReloaderImage:
|
|
||||||
repository: {{ template "system_default_registry" . }}{{ .Values.images.config_reloader.repository }}
|
|
||||||
tag: {{ .Values.images.config_reloader.tag }}
|
|
||||||
{{- if not .Values.disablePvc }}
|
|
||||||
{{- with .Values.fluentd.bufferStorageVolume }}
|
|
||||||
bufferStorageVolume: {{- toYaml . | nindent 6 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
disablePvc: {{ .Values.disablePvc }}
|
|
||||||
{{- if .Values.fluentd.replicas }}
|
|
||||||
scaling:
|
|
||||||
replicas: {{ .Values.fluentd.replicas }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.global.psp.enabled }}
|
|
||||||
security:
|
|
||||||
podSecurityPolicyCreate: true
|
|
||||||
roleBasedAccessControlCreate: true
|
|
||||||
{{- end }}
|
|
||||||
{{- with (default .Values.tolerations .Values.fluentd.tolerations) }}
|
|
||||||
tolerations: {{- toYaml . | nindent 6 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with (default .Values.nodeSelector .Values.fluentd.nodeSelector) }}
|
|
||||||
nodeSelector: {{- toYaml . | nindent 6 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.fluentd.resources }}
|
|
||||||
resources: {{- toYaml . | nindent 6 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.fluentd.livenessProbe }}
|
|
||||||
livenessProbe: {{- toYaml . | nindent 6 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
Loading…
Reference in New Issue