diff --git a/stable/filebeat/Chart.yaml b/stable/filebeat/Chart.yaml index d942d4cc7d..a6019b6713 100644 --- a/stable/filebeat/Chart.yaml +++ b/stable/filebeat/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 description: A Helm chart to collect Kubernetes logs with filebeat icon: https://www.elastic.co/assets/blt47799dcdcf08438d/logo-elastic-beats-lt.svg name: filebeat -version: 0.5.0 +version: 0.6.0 appVersion: 6.3.1 home: https://www.elastic.co/products/beats/filebeat sources: diff --git a/stable/filebeat/README.md b/stable/filebeat/README.md index c48d6453dc..9cd17c7121 100644 --- a/stable/filebeat/README.md +++ b/stable/filebeat/README.md @@ -44,6 +44,7 @@ The following table lists the configurable parameters of the filebeat chart and | `extraVolumes` | Add additional volumes | `[]` | | `extraVolumeMounts` | Add additional mounts | `[]` | | `resources` | | `{}` | +|`priorityClassName` | priorityClassName | `nil` | | `nodeSelector` | | `{}` | | `annotations` | | `{}` | | `tolerations` | | `[]` | diff --git a/stable/filebeat/templates/daemonset.yaml b/stable/filebeat/templates/daemonset.yaml index 6e1e177464..73b9c726b3 100644 --- a/stable/filebeat/templates/daemonset.yaml +++ b/stable/filebeat/templates/daemonset.yaml @@ -28,6 +28,9 @@ spec: {{ toYaml .Values.annotations | indent 8 }} {{- end }} spec: +{{- if .Values.priorityClassName }} + priorityClassName: "{{ .Values.priorityClassName }}" +{{- end }} containers: - name: {{ .Chart.Name }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" diff --git a/stable/filebeat/values.yaml b/stable/filebeat/values.yaml index e80ea62fd2..777c6ef05e 100644 --- a/stable/filebeat/values.yaml +++ b/stable/filebeat/values.yaml @@ -77,6 +77,8 @@ resources: {} # cpu: 100m # memory: 100Mi +priorityClassName: "" + nodeSelector: {} annotations: {}