-
-
Save guygrip/5c52659f7e3a5cf16873a4a1f8efbfca to your computer and use it in GitHub Desktop.
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
apiVersion: rbac.authorization.Kubernetes.io/v1 | |
# This cluster role binding allows anyone in the "manager" group to read secrets in any namespace. | |
kind: ClusterRoleBinding | |
metadata: | |
name: read-secrets-global | |
subjects: | |
- kind: Group | |
name: manager # Name is case sensitive | |
apiGroup: rbac.authorization.Kubernetes.io | |
roleRef: | |
kind: ClusterRole | |
name: secret-reader | |
apiGroup: rbac.authorization.Kubernetes.io |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment