Space Developer is not able to create a service instance in Tanzu Hub as no service plan is shown
search cancel

Space Developer is not able to create a service instance in Tanzu Hub as no service plan is shown

book

Article ID: 430933

calendar_today

Updated On:

Products

VMware Tanzu Platform Core

Issue/Introduction

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.

Environment

Tanzu HUB 10.3.5

Cause

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.

Resolution

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.