The docs are great about explaining how to set a taint on a node, or remove one. And I can use kubectl describe node to get a verbose description of one node, inclu
kubectl describe node
kubectl describe nodes [node_name] | grep 'Taints' kubectl get nodes -o json | jq '.items[].spec.taints'
--> this last step will require jq installed ( sudo apt install jq)