mirror of https://git.rancher.io/charts
46 lines
1.5 KiB
YAML
46 lines
1.5 KiB
YAML
{{- if .Values.additionalLoggingSources.rke2.enabled }}
|
|
apiVersion: logging.banzaicloud.io/v1beta1
|
|
kind: Logging
|
|
metadata:
|
|
name: {{ .Release.Name }}-rke2-journald
|
|
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: "/etc/rancher/logging/logs/*.log"
|
|
extraVolumeMounts:
|
|
- source: "/etc/rancher/logging/logs/"
|
|
destination: "/etc/rancher/logging/logs/"
|
|
readOnly: true
|
|
{{- $total_tolerations := concat (.Values.tolerations) (.Values.fluentbit_tolerations) }}
|
|
{{- with $total_tolerations }}
|
|
tolerations:
|
|
{{- toYaml . | nindent 6 }}
|
|
{{- end }}
|
|
{{- with .Values.nodeSelector }}
|
|
nodeSelector:
|
|
{{- 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 }}
|
|
disablePvc: {{ .Values.disablePvc }}
|
|
{{- with .Values.tolerations }}
|
|
tolerations:
|
|
{{- toYaml . | nindent 6 }}
|
|
{{- end }}
|
|
{{- with .Values.nodeSelector }}
|
|
nodeSelector:
|
|
{{- toYaml . | nindent 6 }}
|
|
{{- end }}
|
|
{{- end }}
|