From 101ab0c11abd5aa9820c067823a83802c3261183 Mon Sep 17 00:00:00 2001 From: Jerome Petazzoni Date: Thu, 19 Apr 2018 06:25:41 -0500 Subject: [PATCH] Add a line about tolerations --- slides/kube/daemonset.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/slides/kube/daemonset.md b/slides/kube/daemonset.md index f32b8ce0..85333238 100644 --- a/slides/kube/daemonset.md +++ b/slides/kube/daemonset.md @@ -232,7 +232,9 @@ We also have one too many pods. The daemon set created one pod per node, except on the master node. -The master node has [taints](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/) preventing ordinary pods from running there. +The master node has [taints](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/) preventing pods from running there. + +(To schedule a pod on this node anyway, the pod will require appropriate [tolerations](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/).) ---