Skip to content

Instantly share code, notes, and snippets.

@pavel-agarkov
Last active March 11, 2018 11:56
Show Gist options
  • Save pavel-agarkov/a1d283f55e92f935338666656a9133bc to your computer and use it in GitHub Desktop.
Save pavel-agarkov/a1d283f55e92f935338666656a9133bc to your computer and use it in GitHub Desktop.
Debugging ASP.NET Core app running in Kubernetes Minikube from Visual Studio 2017 on Windows
param(
# the selector from your yml file
# selector:
# matchLabels:
# app: myweb
# -Selector app=myweb
[Parameter(Mandatory=$true)][string]$Selector
)
Write-Host '1. searching pod by selector:' $Selector '...';
$pod = kubectl get pods --selector=$Selector -o jsonpath='{.items[0].metadata.name}';
Write-Host '2. installing updates ...';
kubectl exec $pod -i -- apt-get update;
Write-Host '3. installing unzip ...';
kubectl exec $pod -i -- apt-get install -y --no-install-recommends unzip;
Write-Host '4. downloading getvsdbgsh ...';
kubectl exec $pod -i -- curl -sSL https://aka.ms/getvsdbgsh -o '/root/getvsdbg.sh';
Write-Host '5. installing vsdbg ...';
kubectl exec $pod -i -- bash /root/getvsdbg.sh -v latest -l /vsdbg;
$cmd = 'dotnet';
Write-Host '6. seaching for' $cmd 'process PID in pod:' $pod '...';
$prid = kubectl exec $pod -i -- pidof -s $cmd;
Write-Host '7. attaching debugger to process with PID:' $pid 'in pod:' $pod '...';
kubectl exec $pod -i -- /vsdbg/vsdbg --interpreter=mi --attach $prid;
@pavel-agarkov
Copy link
Author

This gist is used for this post on Medium.com

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment