How to run procdump within a Kubernetes Pod
TL;DR
First get a shell within the pod:
kubectl exec --stdin --tty <Pod Name> -n <Pod Namespace> -- cmd
then install procdump using choco:
C:\> choco install procdump
find the running processes:
C:\> powershell
PS C:\> Get-Process
PS C:\> exit
then r...
blog.vsalis.eu1 min read