mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
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:
committed by
Kubernetes Prow Robot
parent
5504573f97
commit
4fd353d3b6
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -84,6 +84,8 @@ resources: {}
|
||||
# cpu: 100m
|
||||
# memory: 128Mi
|
||||
|
||||
priorityClassName: ""
|
||||
|
||||
nodeSelector: {}
|
||||
|
||||
tolerations: []
|
||||
|
||||
Reference in New Issue
Block a user