-
Notifications
You must be signed in to change notification settings - Fork 7
/
operator.yaml
51 lines (48 loc) · 975 Bytes
/
operator.yaml
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
---
kind: ServiceAccount
apiVersion: v1
metadata:
name: grafana-operator
namespace: kube-system
---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1beta1
metadata:
name: grafana-operator
rules:
- apiGroups: [""]
resources:
- configmaps
verbs: ["get", "watch", "list"]
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1beta1
metadata:
name: grafana-operator
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: admin
subjects:
- kind: ServiceAccount
name: grafana-operator
namespace: kube-system
---
kind: Deployment
apiVersion: extensions/v1beta1
metadata:
name: grafana-operator
namespace: kube-system
labels:
k8s-app: grafana-operator
spec:
replicas: 1
template:
metadata:
labels:
k8s-app: grafana-operator
spec:
serviceAccountName: grafana-operator
containers:
- image: tsloughter/grafana-operator:latest
name: grafana-operator