Skip to content

Instantly share code, notes, and snippets.

@guygrip
Created May 18, 2022 16:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guygrip/db9461fef30d01e03b3992c472b4faae to your computer and use it in GitHub Desktop.
Save guygrip/db9461fef30d01e03b3992c472b4faae to your computer and use it in GitHub Desktop.
apiVersion: rbac.authorization.Kubernetes.io/v1
# This role binding allows "jane" to read pods in the "default" namespace.
# You need to already have a Role named "pod-reader" in that namespace.
kind: RoleBinding
metadata:
name: read-pods
namespace: default
subjects:
# You can specify more than one "subject"
- kind: User
name: jane # "name" is case sensitive
apiGroup: rbac.authorization.Kubernetes.io
roleRef:
# "roleRef" specifies the binding to a Role / ClusterRole
kind: Role #this must be Role or ClusterRole
name: pod-reader # this must match the name of the Role or ClusterRole you wish to bind to
apiGroup: rbac.authorization.Kubernetes.io
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment