Troubleshooting Networking

Troubleshooting Networking

Missing tools

Share namespaces

k8s 1.16 introduces ephemeral containers to troubleshoot pods

Demo: Namespace sharing

Join namespaces with existing container:

docker run -d --name nginx nginx
docker run -it --rm \
    --net container:nginx \
    --pid container:nginx \
    alpine