From a3c6c96593c2792ddcfbf342e2d6e3530a24fb9c Mon Sep 17 00:00:00 2001 From: seemywings Date: Tue, 27 Aug 2024 13:00:27 -0400 Subject: [PATCH] addressing comments --- pages/how-to/set-up/mgmt-cluster.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pages/how-to/set-up/mgmt-cluster.md b/pages/how-to/set-up/mgmt-cluster.md index 9dc28b0c..ef7c1f23 100644 --- a/pages/how-to/set-up/mgmt-cluster.md +++ b/pages/how-to/set-up/mgmt-cluster.md @@ -50,10 +50,14 @@ roleRef: kind: ClusterRole name: cluster-admin subjects: +# This will create a single binding for the someone@your.company.com user to the cluster-admin k8s role - apiGroup: rbac.authorization.k8s.io kind: User name: someone@your.company.com -# This will create a single binding for the someone@your.company.com user to the cluster-admin k8s role +# The following will bind the role to everyone in the `sre` group + - apiGroup + kind: Group + name: sre ``` * **In the `./apps/services` dir in your MGMT repo**