-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e2e711b
commit a3c6c96
Showing
1 changed file
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,10 +50,14 @@ roleRef: | |
kind: ClusterRole | ||
name: cluster-admin | ||
subjects: | ||
# This will create a single binding for the [email protected] user to the cluster-admin k8s role | ||
- apiGroup: rbac.authorization.k8s.io | ||
kind: User | ||
name: [email protected] | ||
# This will create a single binding for the [email protected] 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** | ||
|