-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
rbac.yaml
52 lines (51 loc) · 943 Bytes
/
rbac.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
apiVersion: v1
kind: ServiceAccount
metadata:
labels:
app: k8s-snapshots
name: k8s-snapshots
namespace: kube-system
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
labels:
app: k8s-snapshots
name: k8s-snapshots
namespace: kube-system
rules:
- apiGroups:
- "k8s-snapshots.elsdoerfer.com"
resources:
- snapshotrules
verbs:
- get
- list
- watch
- apiGroups:
- ""
resources:
- namespaces
- pods
- persistentvolumeclaims
- persistentvolumes
verbs:
- get
- list
- watch
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
labels:
app: k8s-snapshots
name: k8s-snapshots
namespace: kube-system
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: k8s-snapshots
subjects:
- kind: ServiceAccount
name: k8s-snapshots
namespace: kube-system