Purely 'cos I know I'll need this again: -
for i in `crictl pods | grep NotReady | awk '{print $1}'`; do crictl rmp $i; done
which is for use when I've got a bunch of NotReady pods waiting to be nuked.
Purely 'cos I know I'll need this again: -
for i in `crictl pods | grep NotReady | awk '{print $1}'`; do crictl rmp $i; done