forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeck_rbac.yaml
64 lines (64 loc) · 1.07 KB
/
deck_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
52
53
54
55
56
57
58
59
60
61
62
63
64
apiVersion: v1
kind: ServiceAccount
metadata:
namespace: default
annotations:
iam.gke.io/gcp-service-account: [email protected]
name: deck
---
kind: Role
apiVersion: rbac.authorization.k8s.io/v1
metadata:
namespace: default
name: deck
rules:
- apiGroups:
- "prow.k8s.io"
resources:
- prowjobs
verbs:
- get
- list
- watch
# Required when deck runs with `--rerun-creates-job=true`
- create
---
kind: Role
apiVersion: rbac.authorization.k8s.io/v1
metadata:
namespace: test-pods
name: deck
rules:
- apiGroups:
- ""
resources:
- pods/log
verbs:
- get
---
kind: RoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
namespace: default
name: deck
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: deck
subjects:
- kind: ServiceAccount
name: deck
---
kind: RoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
namespace: test-pods
name: deck
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: deck
subjects:
- kind: ServiceAccount
name: deck
namespace: default