Difference between revisions of "Kind: Role"

From wikieduonline
Jump to navigation Jump to search
Line 2: Line 2:
 
* <code>[[kind:]] Role</code>
 
* <code>[[kind:]] Role</code>
  
 +
* https://archive.eksworkshop.com/beginner/090_rbac/create_role_and_binding/
 
<pre>
 
<pre>
 
cat << EoF > rbacuser-role.yaml
 
cat << EoF > rbacuser-role.yaml

Revision as of 12:42, 4 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

Related

See also

Advertising: