Skip to content

Instantly share code, notes, and snippets.

@sbueringer
Last active July 1, 2022 13:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sbueringer/ca64bb19cebb2ad7d9a0a4f1a6bf06ce to your computer and use it in GitHub Desktop.
Save sbueringer/ca64bb19cebb2ad7d9a0a4f1a6bf06ce to your computer and use it in GitHub Desktop.
How to debug go binaries running in a ProwJob locally

How to debug go binaries running in a ProwJob locally

(in this case debug conversion-verifier running in a CAPG verify job)

Starting the ProwJob:

TEST_INFRA=${HOME}/code/src/k8s.io/test-infra
export CONFIG_PATH=${TEST_INFRA}/config/prow/config.yaml
export JOB_CONFIG_PATH=${TEST_INFRA}/config/jobs/kubernetes-sigs/cluster-api-provider-gcp/cluster-api-provider-gcp-presubmits-main.yaml

# Modify ProwJob in test-infra YAML to sleep, e.g.
#        command:
#        - "runner.sh"
#        - "sleep"
#        - "36000"

# Start ProwJob
${TEST_INFRA}/prow/pj-on-kind.sh pull-cluster-api-provider-gcp-verify

Build & copy binaries into ProwJob Pod:

cd ${HOME}/code/src/sigs.k8s.io/cluster-api

# Copy conversion-verifier with debug symbols
cd ./hack/tools
go build -gcflags "all=-N -l"  ./conversion-verifier/main.go
k cp ./main a8af0b57-f93e-11ec-97e7-0242ac110003:/tmp/main -c test

# Copy dlv
k cp $(which dlv) a8af0b57-f93e-11ec-97e7-0242ac110003:/tmp/dlv -c test

Start binary with dlv in the ProwJob Pod:

k exec -it a8af0b57-f93e-11ec-97e7-0242ac110003 /bin/bash
=> /tmp/dlv exec --headless --listen=:20000 --api-version=2 --accept-multiclient /tmp/main

Port-forward debug port:

k port-forward a8af0b57-f93e-11ec-97e7-0242ac110003 20000

Connect with Intellij with a Go remote debug configuration to localhost:20000

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