mirror of
https://github.com/helm/charts.git
synced 2026-08-23 14:27:18 +00:00
[stable/sumokube] enable customization of DaemonSet's UpdateStrategy (#3885)
* [stable/sumokube] enable customization of DaemonSet's UpdateStrategy * defaults to `OnDelete` * optionally can be set to `RollingUpdate` https://kubernetes.io/docs/tasks/manage-daemon/update-daemon-set/ * Remove extra trailing newline * Bump version to 0.1.2
This commit is contained in:
committed by
k8s-ci-robot
parent
875bad801e
commit
c08cd256cb
@@ -1,5 +1,5 @@
|
||||
name: sumokube
|
||||
version: 0.1.1
|
||||
version: 0.1.2
|
||||
description: Sumologic Log Collector
|
||||
keywords:
|
||||
- monitoring
|
||||
|
||||
@@ -55,6 +55,7 @@ The following tables lists the configurable parameters of the Sumokube chart and
|
||||
| `resources.requests.memory` | Memory resource requests | 128Mi |
|
||||
| `resources.limits.memory` | Memory resource limits | 256Mi |
|
||||
| `daemonset.tolerations` | List of node taints to tolerate (requires Kubernetes >= 1.6) | [] |
|
||||
| `daemonset.updateStrategy` | Strategy for applying template changes (requires Kubernetes >= 1.6) | [] |
|
||||
|
||||
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
@@ -63,4 +63,6 @@ spec:
|
||||
name: "{{ template "fullname" . }}-config-{{.Release.Time.Seconds }}"
|
||||
tolerations:
|
||||
{{ toYaml .Values.daemonset.tolerations | indent 8 }}
|
||||
updateStrategy:
|
||||
type: {{ default "OnDelete" .Values.daemonset.updateStrategy | quote }}
|
||||
{{ end }}
|
||||
|
||||
@@ -32,4 +32,3 @@ resources:
|
||||
|
||||
daemonset:
|
||||
tolerations: []
|
||||
|
||||
|
||||
Reference in New Issue
Block a user