After switching to a new router, I realized my pods inside my Kind Kubernetes cluster cannot access internet.
$ kubectl run --rm utils2 -it --image arunvelsriram/utils bash
inside the container now
$ ping google.com
PING google.com.www.tendawifi.com (192.168.1.1) 56(84) bytes of data.
Somehow, ping goes to google.com.www.tendawifi.com.
I see this is because of some strange /etc/resolv.conf:
$ cat /etc/resolv.conf
search default.svc.cluster.local svc.cluster.local cluster.local www.tendawifi.com
When I do the same check on my host Linux machine, I see proper results.
What to check?