Is it possible to set resource to all with Kubernetes RBAC?

11/8/2018

Kubernetes’ RBAC can set special resource as [“pod”] or [“cronjob”]. But want to set all resources with the same verbs. Is it the right method? [“”]

-- Jingqiang Zhang
api
kubernetes
rbac
resources
roles

1 Answer

11/8/2018

The right way to add all resources in RBAC is using ["*"] instead of naming any resources.

-- Prafull Ladha
Source: StackOverflow