Adds docs.

This commit is contained in:
2025-11-04 16:44:36 +00:00
parent f9c7a9e2f4
commit 44ebbbd42c
13 changed files with 971 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# Troubleshoot Service Connectivity
If services can't communicate:
1. Check network policies:
```bash
kubectl get networkpolicies -A
```
2. Verify service endpoints:
```bash
kubectl get endpoints -n <namespace>
```
3. Test connectivity from within the cluster:
```bash
kubectl run -i --tty --rm debug --image=busybox --restart=Never -- wget -O- <service-name>.<namespace>
```