Tag: Pods

Debugging Running Pods on Kubernetes

Executing commands using kubectl exec If you run software on Kubernetes, you will, at some point, want to debug some aspect of what you deploy. A simple approach to debugging that is natural to people used to working with VMs is to connect to a running pod and hack away: kubectl exec -it pod...