Skip to content

Instantly share code, notes, and snippets.

@suvl
Forked from superseb/extended-cleanup-rancher2.sh
Created January 28, 2019 13:45
Show Gist options
  • Save suvl/8b5bcac22e214a9aeaf9f98d390e3c9c to your computer and use it in GitHub Desktop.
Save suvl/8b5bcac22e214a9aeaf9f98d390e3c9c to your computer and use it in GitHub Desktop.
Extended Rancher 2 cleanup
#!/bin/sh
# docker rm -f $(docker ps -qa)
# docker rmi -f $(docker images -q)
# docker volume rm $(docker volume ls -q)
docker stop -f $(docker ps -qa)
docker system prune --all --force # better use docker native cli
for mount in $(mount | egrep '/var/lib/kubelet(.*)type (tmpfs|ceph)' | awk '{ print $3 }') /var/lib/kubelet /var/lib/rancher; do umount $mount; done
cleanupdirs="/etc/ceph /etc/cni /etc/kubernetes /opt/cni /opt/rke /run/secrets/kubernetes.io /run/calico /run/flannel /var/lib/calico /var/lib/etcd /var/lib/cni /var/lib/kubelet /var/lib/rancher/rke/log /var/log/containers /var/log/pods /var/run/calico"
for dir in $cleanupdirs; do
echo "Removing $dir"
rm -rf $dir
done
cleanupinterfaces="flannel.1 cni0 tunl0"
for interface in $cleanupinterfaces; do
echo "Deleting $interface"
ip link delete $interface
done
if [ "$1" = "flush" ]; then
echo "Parameter flush found, flushing all iptables"
iptables -F -t nat
iptables -X -t nat
iptables -F -t mangle
iptables -X -t mangle
iptables -F
iptables -X
/etc/init.d/docker restart
else
echo "Parameter flush not found, iptables not cleaned"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment