kubernetes do not schedule anything unless specified

5/14/2020

kubernetes do not schedule anything to node unless specified

I am adding a node to the cluster. But i don't want pods to scheduled to it. I only want the services which are specified to run on this to be scheduled.

-- shrw
kubernetes

1 Answer

5/14/2020

You can add a taint to the node and add toleration for the taint in pod spec for pods which you want to be scheduled in that node.

https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/

-- Arghya Sadhu
Source: StackOverflow