https://github.com/ppc64le-cloud/debug-net
https://github.com/ppc64le-cloud/debug-net
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ppc64le-cloud/debug-net
- Owner: ppc64le-cloud
- License: apache-2.0
- Created: 2022-08-25T02:58:35.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-10-18T00:42:06.000Z (over 1 year ago)
- Last Synced: 2024-10-20T11:51:11.487Z (over 1 year ago)
- Language: Shell
- Size: 24.4 KB
- Stars: 2
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# debug-net
This image is pushed into the github registry(ghcr.io) in the following namespace: ghcr.io
Image name:
```shell
ghcr.io/ppc64le-cloud/debug-net:
```
Valid tags are:
- `main`: always pointing to the latest code from the main branch
- `vx.x.x`: released image, e.g: `v0.0.1`
- `latest`: point to latest released version
This image is multi-arch manifest supporting the following architectures
- `linux/amd64`
- `linux/ppc64le`
## How to use this image
> Note: for all the references, `main` tag is being used in the following examples, feel free to change it to appropriate version if needed.
### Docker
```shell
docker run -ti ghcr.io/ppc64le-cloud/debug-net:main
```
### Podman
```shell
podman run -ti ghcr.io/ppc64le-cloud/debug-net:main
```
### Kubernetes
```shell
# Create an interactive debugging session on a node and immediately attach to it.
# The container will run in the host namespaces and the host's filesystem will be mounted at /host
kubectl debug node/ -it --image=ghcr.io/ppc64le-cloud/debug-net:main
```
### Openshift
```shell
# Debug a node as an administrator
# To use host binaries, run `chroot /host`
oc debug node/ --image=ghcr.io/ppc64le-cloud/debug-net:main
```