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?
kubectl api-resources
will list all the supported resource types and api-group. Here is the table of resource-types