0

Hello dear community,

in the research of how to properly delete projects and their resources via the OpenStack API I was only able to find a hint in the official python sdk, the project_purge.py (docs). Here deletion is handled for "servers, images, volumes, snapshots, backups", but not for networks, subnetworks, floating_ip, ports, which are linked to projects and have dependencies to each other the more or less.

Following that, are stale resources garbage collected after time if they are not bound to a project, user , etc?

chris polzer
  • 103
  • 3

1 Answers1

1

No, they are not. You need to remove every component manually, and in the correct order (a network can't be removed as long as the attached subnet exists etc.).

Gerald Schneider
  • 23,274
  • 8
  • 57
  • 89
  • Thanks a lot Gerald, I learned the same from some consultants now. I will wait if some more answers pop up and then accept your response it that is ok? – chris polzer Oct 20 '20 at 14:10