RBAC to include all verbs, Resources, APIGroups in Role and ClusterRole from UI


Right now one can do something like including all resources and all verbs in a API group

The UI should be capable to select in a single click

All API groups (An option in drop down to select all API groups)

All Resources in a API group (Adding this to resources dropdown will be good to have)

All Verbs (Again Adding this to Verbs Dropdown or as one of the options to select in the Verbs selection menu)


An example Role would be like this:

apiVersion: rbac.authorization.k8s.io/v1

kind: Role

metadata:

name: app1ns-cl1

namespace: app1ns

rules:

- apiGroups:

- ""

resources:

- '*'

verbs:

- '*'

- apiGroups:

- extensions

resources:

- '*'

verbs:

- '*'

- apiGroups:

- apps

resources:

- '*'

verbs:

- '*'


Slack thread: https://platform9.slack.com/archives/C1HN79N73/p1643718530901689


  • Guest
  • Feb 7 2022
  • Planned
  • Attach files