[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:
Ben Drucker
2018-02-28 11:37:48 -08:00
committed by k8s-ci-robot
parent 875bad801e
commit c08cd256cb
4 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: sumokube
version: 0.1.1
version: 0.1.2
description: Sumologic Log Collector
keywords:
- monitoring
+1
View File
@@ -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,
+2
View File
@@ -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 }}
-1
View File
@@ -32,4 +32,3 @@ resources:
daemonset:
tolerations: []