Is it possible to have multiple rolebindings on the same service account in k8s?

6/25/2019

Is it possible to have multiple rolebindings on the same service account in k8s?

-- injoy
kubernetes
rbac

1 Answer

6/25/2019

yes, you can have multiple role bindings for a specific service account. say, you want to grant read only permissions to SA at cluster level, and read and write permissions at namespace level. in this case you will be creating one role binding at namespace level and another at cluster level

-- P Ekambaram
Source: StackOverflow