Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to delete a "space" in IBM Bluemix?

Tags:

ibm-cloud

I have created an extra "space" on my Bluemix account. I double checked my Bluemix dashboard, but I am not able to delete that space. Now, how I can delete it?

like image 373
Fabio Avatar asked Oct 19 '15 17:10

Fabio


People also ask

How do I delete a space in Cloud Foundry?

Procedure. Navigate to Cloud Foundry Spaces in your Cloud Foundry subaccount and choose  (Delete) on the tile of the space you want to delete. Confirm your change.

What does a space in IBM cloud normally represent?

Spaces. A subgroup within an org that you can use to organize applications, services, and users. Spaces are tied to a specific region in IBM Cloud.

How do I delete an IBM Cloud Lite plan?

Navigate to the IBM Cloud dashboard and select the IBM Cloud service instance you want to delete. From the service instance's Action menu, choose 'Delete Service'.


1 Answers

You can use the cloud foundry CLI (cf) to delete a space. Please note that you need to have the 'Organization Manager' role in order to be able to delete a space.

Use the following command:

# cf delete-space <space-name>

If you don't have cf command line installed in your environment, you can install it from here:

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

Alternatively via Bluemix dashboard:

  1. Select the "Account and Settings" button (top right button, looks like an empty face)
  2. Click on "Manage Organizations". The UI changes to Manage Organization
  3. Select the space you want to delete on the left panel
  4. You will see the space name on the middle panel and a delete button

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

like image 145
Alex da Silva Avatar answered Sep 17 '22 22:09

Alex da Silva