mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Added ability to configure daemonset update strategy (#9911)
Signed-off-by: sanjevsunder <sanjev.sunder@servicerocket.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
fb73f75afa
commit
32dafbe0c6
@@ -1,5 +1,5 @@
|
||||
name: fluentd-cloudwatch
|
||||
version: 0.5.3
|
||||
version: 0.6.3
|
||||
appVersion: v0.12.43-cloudwatch
|
||||
description: A Fluentd CloudWatch Helm chart for Kubernetes.
|
||||
home: https://www.fluentd.org/
|
||||
|
||||
@@ -67,6 +67,7 @@ The following table lists the configurable parameters of the Fluentd Cloudwatch
|
||||
| `rbac.serviceAccountName` | existing ServiceAccount to use (ignored if rbac.create=true) | `default` |
|
||||
| `tolerations` | Add tolerations | `[]` |
|
||||
| `extraVars` | Add pod environment variables (must be specified as a single line object) | `[]` |
|
||||
| `updateStrategy` | Define daemonset update strategy | `OnDelete` |
|
||||
|
||||
Starting with fluentd-kubernetes-daemonset v0.12.43-cloudwatch, the container runs as user fluentd. To be able to write pos files to the host system, you'll need to run fluentd as root. Add the following extraVars value to run as root.
|
||||
|
||||
|
||||
@@ -85,3 +85,5 @@ spec:
|
||||
tolerations:
|
||||
{{ toYaml .Values.tolerations | indent 6 }}
|
||||
{{- end }}
|
||||
updateStrategy:
|
||||
{{ toYaml .Values.updateStrategy | indent 4 }}
|
||||
@@ -43,6 +43,9 @@ rbac:
|
||||
extraVars: []
|
||||
# - "{ name: NODE_NAME, valueFrom: { fieldRef: { fieldPath: spec.nodeName } } }"
|
||||
|
||||
updateStrategy:
|
||||
type: OnDelete
|
||||
|
||||
fluentdConfig: |
|
||||
<match fluent.**>
|
||||
type null
|
||||
|
||||
Reference in New Issue
Block a user