add script to cycle central controllers

This commit is contained in:
Grant Limberg 2018-12-03 15:04:46 -08:00
parent b75f212d70
commit 82409eb345

8
cycle_controllers.sh Executable file
View File

@ -0,0 +1,8 @@
#!/usr/bin/env bash
CONTROLLERS=`kubectl get pods -o=name | grep controller | sed "s/^.\{4\}//"`
for c in ${CONTROLLERS[@]}
do
kubectl delete pod ${c}
done