Skip to content

Instantly share code, notes, and snippets.

@verdurin
Created July 20, 2015 08:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save verdurin/1358a48cd22985e5793b to your computer and use it in GitHub Desktop.
Save verdurin/1358a48cd22985e5793b to your computer and use it in GitHub Desktop.
One-liner to delete unused Cinder volumes in OpenStack
for vol in $(cinder list --status available | tail -n +4 | awk '{ print $2 }'); do cinder delete $vol; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment