https://github.com/batazor/remote-debug
Example remote debug
https://github.com/batazor/remote-debug
Last synced: 10 months ago
JSON representation
Example remote debug
- Host: GitHub
- URL: https://github.com/batazor/remote-debug
- Owner: batazor
- License: mit
- Created: 2022-07-13T08:55:43.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-08-13T20:55:10.000Z (10 months ago)
- Last Synced: 2025-09-02T04:04:17.587Z (10 months ago)
- Language: Makefile
- Size: 625 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# remote-debug
An example demonstrates how to debug applications in the cloud
by running applications for different programming languages
### Requirements
- minikube (or real kubernetes cluster)
- skaffold binary [insttall](https://skaffold.dev/docs/install/)
- telepresence binary
### Getting starting
**Run**
```bash
$> make help
# Run scaffold or use vscode launch.json
$> make minikube-up
$> make skaffold-up
# DNS resolve
$> make telepresence-up
$> curl http://golang-api.remote-debug:7070/test
```
**Down**
```bash
$> make down
```
### Debug


#### Tooling
- [minikube](https://minikube.sigs.k8s.io/docs/)
- **DNS**
- [telepresence](https://www.telepresence.io/)
- **remote debug**
- [skaffold](https://skaffold.dev/)
- [devspace](https://devspace.sh/)
- **AB-helpers**
- [istio](https://istio.io/)
- [nginx-ingress](https://kubernetes.github.io/ingress-nginx/)
#### References
- [Skaffold: more examples](https://github.com/GoogleContainerTools/skaffold/tree/main/examples)