forked from cloud-bulldozer/benchmark-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackpack_role.yaml
49 lines (49 loc) · 840 Bytes
/
backpack_role.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
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: backpack_role
rules:
- apiGroups:
- "*"
resources:
- "*"
verbs:
- get
- list
- watch
- apiGroups:
- policy
resources:
- podsecuritypolicies
verbs:
- use
resourceNames:
- privileged
- apiGroups:
- security.openshift.io
resourceNames:
- privileged
resources:
- securitycontextconstraints
verbs:
- use
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: backpack-view
namespace: benchmark-operator
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: binding-backpack_role
namespace: benchmark-operator
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: backpack_role
subjects:
- kind: ServiceAccount
name: backpack-view
namespace: benchmark-operator