Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 396 Bytes

rbac.md

File metadata and controls

25 lines (19 loc) · 396 Bytes

access control

These settings give your pod's service account permissions to act on other kubernetes resources.

# default settings

rbac:
- apiGroups:
  - ...
  resources:
  - ...
  verbs:
  - ...
# explanations

rbac:
- apiGroups: array of apiGroups for this RBAC rule
  resources: array of resources for this RBAC rule
  verbs: array of verbs for this RBAC rule