Skip to content

Instantly share code, notes, and snippets.

@superseb
Last active June 19, 2023 10:03
Show Gist options
  • Save superseb/2cf186726807a012af59a027cb41270d to your computer and use it in GitHub Desktop.
Save superseb/2cf186726807a012af59a027cb41270d to your computer and use it in GitHub Desktop.
Cleanup host added as custom to Rancher 2.0
#!/bin/sh
# OUTDATED: please refer to the link below for the latest version:
# https://github.com/rancherlabs/support-tools/blob/master/extended-rancher-2-cleanup/extended-cleanup-rancher2.sh
docker rm -f $(docker ps -qa)
docker volume rm $(docker volume ls -q)
cleanupdirs="/var/lib/etcd /etc/kubernetes /etc/cni /opt/cni /var/lib/cni /var/run/calico /opt/rke"
for dir in $cleanupdirs; do
echo "Removing $dir"
rm -rf $dir
done
@qrzeller
Copy link

qrzeller commented May 4, 2020

Thanks !
ros should have a clean function. Or reinstall from cloud-config...

@mikekuzak
Copy link

Will this unregister the node from the cluster too ?

@awesinine
Copy link

saved me a bunch of time, tyvm!

@HoffmannP
Copy link

Are you shure it's /var/run/calico and not /var/lib/calico?

@superseb
Copy link
Author

@HoffmannP This gist is outdated, I updated the code with a link to the updated version.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment