Difference between revisions of "Kind: Role"

From wikieduonline
Jump to navigation Jump to search
 
Line 18: Line 18:
 
   verbs: ["get", "list", "watch"]
 
   verbs: ["get", "list", "watch"]
 
  EoF
 
  EoF
 +
 +
 +
https://kubernetes.io/docs/reference/access-authn-authz/rbac/#role-example
  
 
== Related ==
 
== Related ==

Latest revision as of 11:18, 31 October 2023

cat << EoF > rbacuser-role.yaml
kind: Role
apiVersion: rbac.authorization.k8s.io/v1
metadata:
  namespace: rbac-test
  name: pod-reader
rules:
- apiGroups: [""] # "" indicates the core API group
  resources: ["pods"]
  verbs: ["list","get","watch"]
- apiGroups: ["extensions","apps"]
  resources: ["deployments"]
  verbs: ["get", "list", "watch"]
EoF


https://kubernetes.io/docs/reference/access-authn-authz/rbac/#role-example

Related[edit]

See also[edit]

Advertising: