1. Bash /dev/tcp for lightweight HTTP checks
"exec 3<>/dev/tcp/service/8642
printf 'GET /health HTTP/1.1\r\nHost: service\r\nConnection: close\r\n\r\n' >&3
cat <&3" – mrshu
2. Minimalist /scratch containers shrink attack surface
"FROM scratch just reduces the surface." – regularfry
3. Debug containers let you add tools without rebuilding images
"Debug containers are a thing. Add an ephemeral container to an already running pod, for example to add debugging utilities without restarting the pod." – NewJazz
4. Retro networking shows how tool scarcity drives clever work‑arounds > "Reminds me of telnetting to port 80 to make a get request years and years ago." – alienbaby