I want to change ndots default value from 5 to 3 in all pods in Kubernetes. for example, this is the current resolv.conf output from one of my pods. How can I change the value of ndots from 5 to 3 in all current and future pods:
[root@master01 ~]# kubectl exec test-7c9b9bc678-kfcsj -- cat /etc/resolv.conf
nameserver 10.96.0.10
search default.svc.cluster.local svc.cluster.local cluster.local
options ndots:5
Kubernetes version: 1.18. Install on bare metal servers. Thank you in advanced