Added priority class name option in the logstash (#9883)

Most of this values/choices are similar to the rest of elk stack.

Signed-off-by: Neven Miculinic <neven.miculinic@gmail.com>
This commit is contained in:
Neven Miculinic
2018-12-11 00:29:15 -08:00
committed by Kubernetes Prow Robot
parent 5504573f97
commit 4fd353d3b6
4 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ description: Logstash is an open source, server-side data processing pipeline
icon: https://www.elastic.co/assets/blt86e4472872eed314/logo-elastic-logstash-lt.svg
home: https://www.elastic.co/products/logstash
name: logstash
version: 1.3.0
version: 1.4.0
appVersion: 6.5.0
sources:
- https://www.docker.elastic.co
+1
View File
@@ -91,6 +91,7 @@ The following table lists the configurable parameters of the chart and its defau
| `ingress.hosts` | Ingress accepted hostnames | `["logstash.cluster.local"]` |
| `ingress.tls` | Ingress TLS configuration | `[]` |
| `resources` | Pod resource requests & limits | `{}` |
| `priorityClassName` | priorityClassName | `nil` |
| `nodeSelector` | Node selector | `{}` |
| `tolerations` | Tolerations | `[]` |
| `affinity` | Affinity or Anti-Affinity | `{}` |
@@ -35,6 +35,9 @@ spec:
{{- end }}
{{- end }}
spec:
{{- if .Values.priorityClassName }}
priorityClassName: "{{ .Values.priorityClassName }}"
{{- end }}
securityContext:
runAsUser: 1000
fsGroup: 1000
+2
View File
@@ -84,6 +84,8 @@ resources: {}
# cpu: 100m
# memory: 128Mi
priorityClassName: ""
nodeSelector: {}
tolerations: []