mirror of
https://github.com/Azure-Samples/graphrag-accelerator.git
synced 2025-12-28 07:34:14 +00:00
14 lines
426 B
YAML
14 lines
426 B
YAML
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: ClusterRole
|
|
metadata:
|
|
name: {{ include "graphrag.fullname" . }}
|
|
labels:
|
|
{{- include "graphrag.labels" . | nindent 4 }}
|
|
rules:
|
|
- apiGroups: [""]
|
|
resources: ["pods"]
|
|
verbs: ["get", "list", "watch", "create", "update", "patch", "delete"]
|
|
- apiGroups: ["batch", "extensions"]
|
|
resources: ["jobs"]
|
|
verbs: ["get", "list", "watch", "create", "update", "patch", "delete"]
|