vamshiDevOps
vamshiDevOps

Reputation: 3

How to create Organization and space in mindsphere using cloudfoundry?

When I am using the following code:

cf create-org (ORG_name)

I am getting an error:

You are not authorized to perform the requested action

Upvotes: 0

Views: 315

Answers (3)

Colin M
Colin M

Reputation: 103

If this is a Developer tenant, then you will already have an org for the tenant, which has the same name as the tenant. You can't create another org. By default, only the tenant owner is in the OrgManager role which can access the org.

Either:

  1. Get the tenant owner to add you to the OrgManager role
  2. Use MindSphere Settings to create Service Credentials for Cloud Foundry. This will allow you to login to cf using those credentials, access the cf org and add your real user to the org

Upvotes: 0

vamshiDevOps
vamshiDevOps

Reputation: 3

Actually I have used to push my application to mindsphere, but it was not done because i used normal user account. It need developer account to push the account.

Upvotes: 0

Blaine
Blaine

Reputation: 811

In many distributions of Cloud Foundry, an org represents an entire company or account so you likely won't be able to create another org without signing up for another account. (See MindSphere documentation)

Orgs and spaces are used to control user permissions and organize resources such as apps and services. Unless you are trying to create a space that you don't want your org manager to see, you might just create a new space instead.

Upvotes: 0

Related Questions