1
0
mirror of https://github.com/ko-build/ko.git synced 2025-11-23 22:35:11 +02:00

docs: add draft for debugging

Signed-off-by: Dan Luhring <dluhring@chainguard.dev>
This commit is contained in:
Dan Luhring
2024-05-23 20:15:39 -04:00
committed by Jason Hall
parent 51c5d4a15a
commit 9bd7f3e723
2 changed files with 31 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
# Debugging
Sometimes it's challenging to track down the cause of unexpected behavior in an app. Because `ko` makes it simple to make tweaks to your app and immediately rebuild your image, it's possible to iteratively explore various aspects of your app, such as by adding log lines that print variable values.
But to help you solve the problem _as fast as possible_, `ko` supports debugging your Go app with [delve](https://github.com/go-delve/delve).
To use this feature, just add the `--debug` flag to your `ko build` command. This adjusts how the image is built:
- It installs `delve` in the image (in addition to your own app).
- It sets the image's `ENTRYPOINT` to a `delve exec ...` command that runs the Go app in debug-mode, listening on port `40000` for a debugger client.
- It ensures your compiled Go app includes debug symbols needed to enable debugging.
**Note:** This feature is geared toward development workflows. It **should not** be used in production.
### How it works
Build the image using the debug feature.
```plaintext
ko build . --debug
```
Run the container, ensuring that the debug port (`40000`) is exposed to allow clients to connect to it.
```plaintext
docker run -p 40000:40000 <img>
```
This sets up your app to be waiting to run the command you've specified. All that's needed now is to connect your debugger client to the running container!

View File

@@ -24,6 +24,7 @@ nav:
- features/k8s.md
- features/static-assets.md
- features/build-cache.md
- features/debugging.md
- Advanced:
- advanced/go-packages.md
- advanced/limitations.md