How can I delete more than couple of pods at a time?
The commands I run:
kubectl delete pod pod1
kubectl delete pod pod2
kubectl delete pod pod3
The approach I want to use:
kubectl delete pod pod1 pod2 pod3
Any commands or style that can help me do this? Thanks!