mirror of
https://github.com/helm/charts.git
synced 2026-08-20 21:08:12 +00:00
[stable/graylog] enable configuration of initContainer resources (#16255)
* feat(stable/graylog): enable configuration of initContainer resources This change will make Graylog deployments compatible with clusters using ResourceQuotas to achieve hard or soft multi-tenancy. Using ResourceQuotas in this way requires that every container has explicit CPU and/or Memory resources configured Signed-off-by: Thomas Lovett <tklovett@gmail.com> * docs(stable/graylog): add missing backtick to fix formatting Signed-off-by: Thomas Lovett <tklovett@gmail.com> * chore(stable/graylog): bump version from 1.2.0 to 1.3.0 Signed-off-by: Thomas Lovett <tklovett@gmail.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
71026997e1
commit
4cffe8fdbb
@@ -1,7 +1,7 @@
|
||||
apiVersion: v1
|
||||
name: graylog
|
||||
home: https://www.graylog.org
|
||||
version: 1.2.0
|
||||
version: 1.3.0
|
||||
appVersion: 3.0.2-2
|
||||
description: Graylog is the centralized log management solution built to open standards for capturing, storing, and enabling real-time analysis of terabytes of machine data.
|
||||
keywords:
|
||||
|
||||
@@ -138,8 +138,9 @@ The following table lists the configurable parameters of the Cassandra chart and
|
||||
| `graylog.config` | Add additional server configuration to `graylog.conf` file. | `` |
|
||||
| `graylog.serverFiles` | Add additional server files on /etc/graylog/server. This is useful for enable TLS on input | `{}` |
|
||||
| `graylog.journal.deleteBeforeStart` | Delete all journal files before start Graylog | `false` |
|
||||
| `graylog.init.resources` | Configure resource requests and limits for the Graylog StatefulSet initContainer | `{}` |
|
||||
| `graylog.provisioner.enabled` | Enable optional Job to run an arbitrary Bash script | `false` |
|
||||
| `graylog.provisioner.script | The contents of the provisioner Bash script | `` |
|
||||
| `graylog.provisioner.script` | The contents of the provisioner Bash script | `` |
|
||||
| `rbac.create` | If true, create & use RBAC resources | `true` |
|
||||
| `rbac.serviceAccount.create` | If true, create the Graylog service account | `true` |
|
||||
| `rbac.serviceAccount.name` | Name of the server service account to use or create | `{{ graylog.fullname }}` |
|
||||
|
||||
@@ -78,6 +78,10 @@ spec:
|
||||
mountPath: /usr/share/graylog/data/journal
|
||||
- mountPath: /k8s
|
||||
name: kubectl
|
||||
{{- if .Values.graylog.init.resources }}
|
||||
resources:
|
||||
{{ toYaml .Values.graylog.init.resources | indent 12 }}
|
||||
{{- end }}
|
||||
containers:
|
||||
- name: graylog-server
|
||||
image: "{{ .Values.graylog.image.repository }}"
|
||||
|
||||
@@ -257,6 +257,10 @@ graylog:
|
||||
##
|
||||
deleteBeforeStart: false
|
||||
|
||||
init:
|
||||
# Configure resource requests and limits for the Graylog StatefulSet initContainer
|
||||
resources: {}
|
||||
|
||||
## Additional server files will be deployed to /etc/graylog/server
|
||||
## For example, you can put server certificates or authorized clients certificates here
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user