Sign inSign up

highcanfly/net-tools

By highcanfly

Updated about 1 month ago

minimalist ubuntu 22.04 image for in cluster K8S testing

Image
0

3.6K

highcanfly/net-tools repository overview

ubuntu-net-tools-image

This is a very basic container with some tools useful for debugging kubernetes network.

  • iputils-ping
  • netcat
  • bind9-dnsutils
  • inetutils-traceroute
  • net-tools
  • curl
  • tcpdump
  • cloudflared

Docker

docker run -it highcanfly/net-tools

Kubernetes

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

Tag summary

Content type

Image

Digest

sha256:00c8fc0b4

Size

114.8 MB

Last updated

about 1 month ago

docker pull highcanfly/net-tools