What apiGroups and resources exist for RBAC rules in kubernetes?

5/30/2019
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
  namespace: xi-{{instanceId}}
  name: deployment-creation
rules:
- apiGroups: [""]
  resources: ["pods"]
  verbs: ["get", "list", "watch"]
- apiGroups: ["batch", "extensions"]
  resources: ["jobs"]
  verbs: ["get", "list", "watch", "create", "update", "patch", "delete"]

In the above example, I permit various operations on pods and jobs. For pods, the apiGroup is blank. For jobs, the apiGroup may be batch or extensions. Where can I find all the possible resources, and which apiGroup I should use with each resource?

-- whistling_marmot
kubernetes
rbac

1 Answer

5/30/2019

kubectl api-resources will list all the supported resource types and api-group. Here is the table of resource-types

-- Suresh Vishnoi
Source: StackOverflow