If you have ever managed a Kubernetes cluster, chances are you have encountered pods that just doesn’t want to behave the way they are supposed to.
You checked the logs and traced it back to the source code. Logic checks out ✅
You started narrowing down the causes. Networking issue? Configuration issue?
You entered the container and decided to use ping
to identify network connectivity issues.
/ $ ping google.com
PING google.com (142.251.12.138): 56 data bytes
ping: permission denied (are you root?)
Or maybe you wanted to install another tool like tcpdump
to observe network traffic.