diff --git a/stable/dask/Chart.yaml b/stable/dask/Chart.yaml index 976c185947..0424360851 100755 --- a/stable/dask/Chart.yaml +++ b/stable/dask/Chart.yaml @@ -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 diff --git a/stable/dask/templates/dask-worker-deployment.yaml b/stable/dask/templates/dask-worker-deployment.yaml index 27e1fc08e3..cdef7b17ee 100644 --- a/stable/dask/templates/dask-worker-deployment.yaml +++ b/stable/dask/templates/dask-worker-deployment.yaml @@ -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"