5. Run busybox

kubectl run -i --tty busybox --image=busybox -- sh

Busybox with curl can be installed

kubectl run -i --tty busybox --image=progrium/busybox -- sh
opkg-install curl

There is another debugging tool. It is called netshoot

$ kubectl run tmp-shell --rm -i --tty --image nicolaka/netshoot -- /bin/bash

Last updated