-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontroller.yaml
56 lines (51 loc) · 1.05 KB
/
controller.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
apiVersion: v1
kind: ServiceAccount
metadata:
name: example-controller-service-account
---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: example-controller-role
rules:
- apiGroups:
- "patrickdap.com"
resources:
- todos
verbs:
- list
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: example-controller-rolebinding
subjects:
- kind: ServiceAccount
name: example-controller-service-account
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: example-controller-role
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: example-controller
spec:
replicas: 1
selector:
matchLabels:
app: example-controller
template:
metadata:
labels:
app: example-controller
spec:
serviceAccountName: example-controller-service-account
containers:
- name: example-controller
image: demo-controller:latest
imagePullPolicy: IfNotPresent
ports:
- name: web
containerPort: 8080