minimalist ubuntu 22.04 image for in cluster K8S testing
3.6K
This is a very basic container with some tools useful for debugging kubernetes network.
docker run -it highcanfly/net-tools
apiVersion: v1
kind: Pod
metadata:
name: shell
namespace: sandbox
spec:
containers:
- name: shell
image: highcanfly/net-tools
imagePullPolicy: Always
command: ["/bin/sh"]
args: ["-c", "cd ~/ && touch file.txt && mknod -m 777 fifo p && cat fifo | netcat -k -l 8000 > fifo && sleep infinity"]
hostNetwork: false
dnsPolicy: ClusterFirst
Content type
Image
Digest
sha256:00c8fc0b4…
Size
114.8 MB
Last updated
about 1 month ago
docker pull highcanfly/net-tools