[stable/filebeat] Add support for priorityClasses (#6838)

- add support for priorityClasses
This commit is contained in:
Ryan Luckie
2018-07-26 12:45:15 -07:00
committed by k8s-ci-robot
parent 4d03b7ccfd
commit c5ebdb8367
4 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -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:
+1
View File
@@ -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` | | `[]` |
+3
View File
@@ -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 }}"
+2
View File
@@ -77,6 +77,8 @@ resources: {}
# cpu: 100m
# memory: 100Mi
priorityClassName: ""
nodeSelector: {}
annotations: {}