-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathrbac.yaml
More file actions
68 lines (68 loc) · 1.5 KB
/
rbac.yaml
File metadata and controls
68 lines (68 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
apiVersion: v1
kind: ServiceAccount
metadata:
name: opentelemetry-targetallocator-sa
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: opentelemetry-targetallocator-role-1
annotations:
meta.helm.sh/release-name: "feast-release"
meta.helm.sh/release-namespace: "feast-val"
labels:
app.kubernetes.io/managed-by: "Helm"
rules:
- apiGroups:
- monitoring.coreos.com
resources:
- servicemonitors
- podmonitors
verbs:
- '*'
- apiGroups: [""]
resources:
- namespaces
verbs: ["get", "list", "watch"]
- apiGroups: [""]
resources:
- nodes
- nodes/metrics
- services
- endpoints
- pods
verbs: ["get", "list", "watch"]
- apiGroups: [""]
resources:
- configmaps
verbs: ["get"]
- apiGroups:
- discovery.k8s.io
resources:
- endpointslices
verbs: ["get", "list", "watch"]
- apiGroups:
- networking.k8s.io
resources:
- ingresses
verbs: ["get", "list", "watch"]
- nonResourceURLs: ["/metrics"]
verbs: ["get"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: opentelemetry-targetallocator-rb-1
annotations:
meta.helm.sh/release-name: "feast-release"
meta.helm.sh/release-namespace: "feast-val"
labels:
app.kubernetes.io/managed-by: "Helm"
subjects:
- kind: ServiceAccount
name: opentelemetry-targetallocator-sa
namespace: <namespace> # helm value - {{ .Release.Namespace }}
roleRef:
kind: ClusterRole
name: opentelemetry-targetallocator-role-1
apiGroup: rbac.authorization.k8s.io