We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8774350 + 7a175d5 commit 54878edCopy full SHA for 54878ed
content/en/docs/reference/access-authn-authz/rbac.md
@@ -514,14 +514,23 @@ subjects:
514
namespace: kube-system
515
```
516
517
-For all service accounts in the "qa" namespace:
+For all service accounts in the "qa" group in any namespace:
518
519
```yaml
520
subjects:
521
- kind: Group
522
name: system:serviceaccounts:qa
523
apiGroup: rbac.authorization.k8s.io
524
525
+For all service accounts in the "dev" group in the "development" namespace:
526
+
527
+```yaml
528
+subjects:
529
+- kind: Group
530
+ name: system:serviceaccounts:dev
531
+ apiGroup: rbac.authorization.k8s.io
532
+ namespace: development
533
+```
534
535
For all service accounts in any namespace:
536
0 commit comments