This commit is contained in:
Adam Ierymenko 2019-08-19 20:29:24 -07:00
commit 5c1fc43610
No known key found for this signature in database
GPG key ID: 1657198823E52A61
2 changed files with 0 additions and 0 deletions

9
attic/cycle_controllers.sh Executable file
View file

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