[stable/dask] Tolerations for worker deployment (#9529)

* Add worker pod tolerations

See: http://kubernetes.dask.org/en/latest/#deployment-details
Signed-off-by: Erik Sundell <erik.i.sundell@gmail.com>

* Bump chart version

Signed-off-by: Erik Sundell <erik.i.sundell@gmail.com>
This commit is contained in:
Erik Sundell
2018-12-13 10:30:54 -08:00
committed by Kubernetes Prow Robot
parent 665b81dd0d
commit de9118bb98
2 changed files with 10 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: dask
version: 2.0.0
version: 2.0.1
appVersion: 1.0.0
description: Distributed computation in Python with task scheduling
home: https://dask.pydata.org
@@ -44,3 +44,12 @@ spec:
{{ toYaml .Values.worker.resources | indent 12 }}
env:
{{ toYaml .Values.worker.env | indent 12 }}
tolerations:
- key: "k8s.dask.org_dedicated"
operator: "Equal"
value: "worker"
effect: "NoSchedule"
- key: "k8s.dask.org/dedicated"
operator: "Equal"
value: "worker"
effect: "NoSchedule"