Files
wild-cloud/docs/guides/troubleshoot-dns.md
2025-08-31 14:30:09 -07:00

486 B

Troubleshoot DNS

If DNS resolution isn't working properly:

  1. Check CoreDNS status:

    kubectl get pods -n kube-system -l k8s-app=kube-dns
    kubectl logs -l k8s-app=kube-dns -n kube-system
    
  2. Verify CoreDNS configuration:

    kubectl get configmap -n kube-system coredns -o yaml
    
  3. Test DNS resolution from inside the cluster:

    kubectl run -i --tty --rm debug --image=busybox --restart=Never -- nslookup kubernetes.default