mirror of
https://github.com/project-zot/zot.git
synced 2025-01-06 22:40:28 -05:00
44 lines
770 B
YAML
44 lines
770 B
YAML
|
apiVersion: v1
|
||
|
kind: ServiceAccount
|
||
|
metadata:
|
||
|
name: prometheus
|
||
|
---
|
||
|
apiVersion: rbac.authorization.k8s.io/v1beta1
|
||
|
kind: ClusterRole
|
||
|
metadata:
|
||
|
name: prometheus
|
||
|
rules:
|
||
|
- apiGroups: [""]
|
||
|
resources:
|
||
|
- nodes
|
||
|
- nodes/metrics
|
||
|
- services
|
||
|
- endpoints
|
||
|
- pods
|
||
|
verbs: ["get", "list", "watch"]
|
||
|
- apiGroups: [""]
|
||
|
resources:
|
||
|
- configmaps
|
||
|
verbs: ["get"]
|
||
|
- apiGroups:
|
||
|
- networking.k8s.io
|
||
|
resources:
|
||
|
- ingresses
|
||
|
verbs: ["get", "list", "watch"]
|
||
|
- nonResourceURLs: ["/metrics"]
|
||
|
verbs: ["get"]
|
||
|
---
|
||
|
apiVersion: rbac.authorization.k8s.io/v1beta1
|
||
|
kind: ClusterRoleBinding
|
||
|
metadata:
|
||
|
name: prometheus
|
||
|
roleRef:
|
||
|
apiGroup: rbac.authorization.k8s.io
|
||
|
kind: ClusterRole
|
||
|
name: prometheus
|
||
|
subjects:
|
||
|
- kind: ServiceAccount
|
||
|
name: prometheus
|
||
|
namespace: default
|
||
|
|