Kubernetes: taints and toleration

12/4/2018

We use kubernetes with aws cloud and for one node I applied taints using the kubectl command. When I restart that node, taints are lost.

So I wanted to know, do kubernetes taints persist or not?

-- Jayashri Garud
kubernetes

1 Answer

5/25/2019

Taints applied to a node via kubectl will not persist a reboot, but depending on your Kubernetes install method, etc, you can manually register a node with the --register-with-taints flag to add taints that should persist the restarts.

Kubernetes Node Docs

-- sethmccombs
Source: StackOverflow