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

407 B

Troubleshoot Service Connectivity

If services can't communicate:

  1. Check network policies:

    kubectl get networkpolicies -A
    
  2. Verify service endpoints:

    kubectl get endpoints -n <namespace>
    
  3. Test connectivity from within the cluster:

    kubectl run -i --tty --rm debug --image=busybox --restart=Never -- wget -O- <service-name>.<namespace>