How to run procdump within a Kubernetes Pod
May 12, 2021 · 1 min read · 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...
Join discussion