K8s下网络排障工具
https://hub.docker.com/r/nicolaka/netshoot
ex
kubectl run tmp-shell --rm -i --tty --image nicolaka/netshoot -- /bin/bash
# 主机的net ns下运行
kubectl run tmp-shell --rm -i --tty --overrides='{"spec": {"hostNetwork": true}}' --image nicolaka/netshoot -- /bin/bash