How to remove “space” in IBM Bluemix?

I created an extra “space” on my Bluemix account. I double-checked the Bluemix toolbar, but I cannot remove this space. Now, how can I remove it?

+6
source share
1 answer

You can use the cloud foundry CLI ( cf ) to remove the gap. Note that you need to have the Organization Manager role in order to be able to remove the space.

Use the following command:

 # cf delete-space <space-name> 

If you do not have the cf command line installed in your environment, you can install it here:

https://github.com/cloudfoundry/cli/releases

Alternatively using the Bluemix toolbar:

  • Select the "Account and Settings" button (upper right button, looks like an empty side)
  • Click Manage Organizations. The user interface changes to "Organization Management."
  • Select the place you want to delete in the left pane
  • You will see the name of the space in the middle panel and the delete button

When you remove a space, all applications and services in this space will also be deleted, so use this command with caution.

+9
source

All Articles