How can I identify the default toleration of a pod?

Hi,
I want to have the ability to iterate over the toleration of a pod, see if it is not a default toleration and then check if it exists in another entity.
How can I identify the default toleration of a pod?

Thanks,
Shira

The default toleration is NOTHING. If you want get tolerations of whatever pod then do, kubectl describe pod my_pod -n my_namespace |grep tolerations

Hi,
I see default toleration on the pod, here:
Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s
node.kubernetes.io/unreachable:NoExecute op=Exists for 300s

Do you have any suggestions on this?