Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[dev-v2.10] rancher-logging 105.2.1-rc.1+up4.10.0 update #5115

Open
wants to merge 4 commits into
base: dev-v2.10
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
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ spec:
{{- with .Values.nodeSelector }}
nodeSelector: {{- toYaml . | nindent 6 }}
{{- end }}
{{- with (default .Values.priorityClassName .Values.fluentd.podPriorityClassName) }}
podPriorityClassName: {{ . }}
{{- end }}
{{- with .Values.fluentbit.resources }}
resources: {{- toYaml . | nindent 6 }}
{{- end }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ spec:
{{- with (default .Values.nodeSelector .Values.fluentd.nodeSelector) }}
nodeSelector: {{- toYaml . | nindent 6 }}
{{- end }}
{{- with (default .Values.priorityClassName .Values.fluentd.podPriorityClassName) }}
podPriorityClassName: {{ . }}
{{- end }}
{{- with .Values.fluentd.resources }}
resources: {{- toYaml . | nindent 6 }}
{{- end }}
Expand Down Expand Up @@ -72,4 +75,4 @@ spec:

{{- define "logging-operator.logging" -}}
{{- include "logging-operator.util.merge.logging" (append . "logging-operator.logging.tpl") -}}
{{- end -}}
{{- end -}}
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
containers:
- name: fluentbit
image: "{{ template "logging-operator.fluentbitImage" . }}"
{{- include "logging-operator.individualFluentbit" $individualValues | nindent 10 }}
{{- include "logging-operator.individualFluentbit" $individualValues | indent 10 }}
{{- if .Values.global.seLinux.enabled }}
securityContext:
seLinuxOptions:
Expand All @@ -42,6 +42,9 @@ spec:
{{- with .Values.nodeSelector }}
nodeSelector: {{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.priorityClassName }}
priorityClassName: {{ . }}
{{- end }}
serviceAccountName: "{{ .Release.Name }}-k3s-journald-aggregator"
volumes:
- name: config
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
containers:
- name: fluentbit
image: "{{ template "logging-operator.fluentbitImage" . }}"
{{- include "logging-operator.individualFluentbit" $individualValues | nindent 10 }}
{{- include "logging-operator.individualFluentbit" $individualValues | indent 10 }}
volumeMounts:
- mountPath: /var/lib/rancher/rke/log/
name: indir
Expand Down Expand Up @@ -58,6 +58,9 @@ spec:
{{- with .Values.nodeSelector }}
nodeSelector: {{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.priorityClassName }}
priorityClassName: {{ . }}
{{- end }}
---
apiVersion: v1
kind: ServiceAccount
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
containers:
- name: fluentbit
image: "{{ template "logging-operator.fluentbitImage" . }}"
{{- include "logging-operator.individualFluentbit" $individualValues | nindent 10 }}
{{- include "logging-operator.individualFluentbit" $individualValues | indent 10 }}
{{- if .Values.global.seLinux.enabled }}
securityContext:
seLinuxOptions:
Expand All @@ -45,6 +45,9 @@ spec:
{{- with .Values.nodeSelector }}
nodeSelector: {{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.priorityClassName }}
priorityClassName: {{ . }}
{{- end }}
serviceAccountName: "{{ .Release.Name }}-rke2-journald-aggregator"
volumes:
- name: config
Expand Down
2 changes: 2 additions & 0 deletions charts/rancher-logging/105.2.1-rc.1+up4.10.0/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,7 @@ fluentd:
initialDelaySeconds: 30
periodSeconds: 15
nodeSelector: {}
podPriorityClassName: ""
resources: {}
tolerations: {}
env: []
Expand All @@ -457,6 +458,7 @@ fluentbit:
Mem_Buf_Limit: ""
Multiline_Flush: ""
Skip_Long_Lines: ""
podPriorityClassName: ""
resources: {}
tolerations:
- key: node-role.kubernetes.io/control-plane
Expand Down
4 changes: 2 additions & 2 deletions index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17029,9 +17029,9 @@ entries:
catalog.cattle.io/upstream-version: 4.10.0
apiVersion: v2
appVersion: 4.10.0
created: "2025-01-31T15:35:13.778059752-04:00"
created: "2025-02-07T17:42:50.336793-05:00"
description: Logging operator for Kubernetes based on Fluentd and Fluentbit.
digest: 14c78131b03e9bc5f7a154ea76a6741f776b27d5bd01b70b760a2e0d66fee997
digest: 7ae00c647b4a698806f7e9c8d6f15d8fcca7747c0ed466a7c65602ab43ed875c
home: https://kube-logging.github.io
icon: file://assets/logos/rancher-logging.svg
keywords:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ spec:
{{- with .Values.nodeSelector }}
nodeSelector: {{- toYaml . | nindent 6 }}
{{- end }}
{{- with (default .Values.priorityClassName .Values.fluentd.podPriorityClassName) }}
podPriorityClassName: {{ . }}
{{- end }}
{{- with .Values.fluentbit.resources }}
resources: {{- toYaml . | nindent 6 }}
{{- end }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ spec:
{{- with (default .Values.nodeSelector .Values.fluentd.nodeSelector) }}
nodeSelector: {{- toYaml . | nindent 6 }}
{{- end }}
{{- with (default .Values.priorityClassName .Values.fluentd.podPriorityClassName) }}
podPriorityClassName: {{ . }}
{{- end }}
{{- with .Values.fluentd.resources }}
resources: {{- toYaml . | nindent 6 }}
{{- end }}
Expand Down Expand Up @@ -72,4 +75,4 @@ spec:

{{- define "logging-operator.logging" -}}
{{- include "logging-operator.util.merge.logging" (append . "logging-operator.logging.tpl") -}}
{{- end -}}
{{- end -}}
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
containers:
- name: fluentbit
image: "{{ template "logging-operator.fluentbitImage" . }}"
{{- include "logging-operator.individualFluentbit" $individualValues | nindent 10 }}
{{- include "logging-operator.individualFluentbit" $individualValues | indent 10 }}
{{- if .Values.global.seLinux.enabled }}
securityContext:
seLinuxOptions:
Expand All @@ -42,6 +42,9 @@ spec:
{{- with .Values.nodeSelector }}
nodeSelector: {{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.priorityClassName }}
priorityClassName: {{ . }}
{{- end }}
serviceAccountName: "{{ .Release.Name }}-k3s-journald-aggregator"
volumes:
- name: config
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
containers:
- name: fluentbit
image: "{{ template "logging-operator.fluentbitImage" . }}"
{{- include "logging-operator.individualFluentbit" $individualValues | nindent 10 }}
{{- include "logging-operator.individualFluentbit" $individualValues | indent 10 }}
volumeMounts:
- mountPath: /var/lib/rancher/rke/log/
name: indir
Expand Down Expand Up @@ -58,6 +58,9 @@ spec:
{{- with .Values.nodeSelector }}
nodeSelector: {{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.priorityClassName }}
priorityClassName: {{ . }}
{{- end }}
---
apiVersion: v1
kind: ServiceAccount
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
containers:
- name: fluentbit
image: "{{ template "logging-operator.fluentbitImage" . }}"
{{- include "logging-operator.individualFluentbit" $individualValues | nindent 10 }}
{{- include "logging-operator.individualFluentbit" $individualValues | indent 10 }}
{{- if .Values.global.seLinux.enabled }}
securityContext:
seLinuxOptions:
Expand All @@ -45,6 +45,9 @@ spec:
{{- with .Values.nodeSelector }}
nodeSelector: {{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.priorityClassName }}
priorityClassName: {{ . }}
{{- end }}
serviceAccountName: "{{ .Release.Name }}-rke2-journald-aggregator"
volumes:
- name: config
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
# -- storage class for event tailer pvc
accessModes:
- ReadWriteOnce
@@ -309,14 +304,176 @@
@@ -309,14 +304,178 @@
image: fluent/fluent-bit
pullPolicy: IfNotPresent
port: 8080
Expand Down Expand Up @@ -186,6 +186,7 @@
+ initialDelaySeconds: 30
+ periodSeconds: 15
+ nodeSelector: {}
+ podPriorityClassName: ""
+ resources: {}
+ tolerations: {}
+ env: []
Expand All @@ -201,6 +202,7 @@
+ Mem_Buf_Limit: ""
+ Multiline_Flush: ""
+ Skip_Long_Lines: ""
+ podPriorityClassName: ""
+ resources: {}
+ tolerations:
+ - key: node-role.kubernetes.io/control-plane
Expand All @@ -221,7 +223,7 @@

# -- Extra manifests to deploy as an array
extraManifests: []
@@ -327,3 +484,12 @@
@@ -327,3 +486,12 @@
# name: extra-manifest
# data:
# extra-data: "value"
Expand Down