Users with Space Developer role is synced with foundation to the Hub, can login and see spaces and apps, and services in marketplace. However, when trying to create a service instance service plans are not shown.
Tanzu HUB 10.3.5
Space Developer is required to choose Org Group as part of create service instance flow. The issue is, the view of Org Groups is not allowed for the Space Developer role.
To troubleshoot this issue, use the following query with Space Developer token to check what service plans are visible.
query GetServicePlans {
entityQuery {
queryEntities(entityType: "Tanzu.TAS.ServicePlan") {
entities {
entityId
entityType
entityName
}
}
}
}
Or use filter by entityName and put the exact plan name as in the example below:
queryEntities(...<existing>, entityName: "on-demand-postgres-db")
R&D are aware of this bug and are working on a fix.