An open API service indexing awesome lists of open source software.

https://github.com/simontheleg/debug-pod


https://github.com/simontheleg/debug-pod

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

        

# Debug-Pod

Simple pod equipped with networking tools, for debugging purposes. Image can be found on [Dockerhub](https://hub.docker.com/r/simontheleg/debug-pod/).

## Running inside Kubernetes

Can be done in a single (albeit long) shell cmd:

```shell
kubectl create deploy debug-pod --image=simontheleg/debug-pod:latest && \
kubectl wait --for=condition=ready pod -l app=debug-pod && \
kubectl exec -it $(kubectl get pods -o jsonpath="{.items[?(@.metadata.labels.app=='debug-pod')].metadata.name}") -- /bin/bash
```

clean up

```shell
kubectl delete deploy debug-pod
```

## Building & publishing

```shell
IMG_NAME="docker.io/simontheleg/debug-pod:latest"
podman image rm $IMG_NAME
podman manifest create $IMG_NAME
podman build --platform linux/amd64,linux/arm64 --manifest $IMG_NAME .
podman manifest push $IMG_NAME
```