cycle.sh 108 B

1234
  1. for i in $(kubectl get pods | grep -i pihole | cut -f 1 -d " "); do
  2. kubectl delete pod $i
  3. sleep 30
  4. done