RBAC required to create project

Posted on

Hi Team,

I want to create custom role for user who is going to create namespaces for different teams. This user is not part of any other groups. It just need only create namespace and set quota permissions. I used below template.

  • apiGroups:
    • ""
    • project.openshift.io
    • quota.openshift.io
      resources:
    • projectrequests
    • project
    • namespace
    • bindings
    • events
    • limitranges
    • namespaces/status
    • pods/log
    • pods/status
    • replicationcontrollers/status
    • resourcequotas
    • resourcequotas/status
    • appliedclusterresourcequotas
      verbs:
    • create
    • get
    • update
    • list
    • patch
    • watch

I am still receiving "[0;31mError from server (Forbidden): You requested a new project with Limits & Quotas![0m" error. Please suggest

Responses