-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeployment.yaml
More file actions
57 lines (57 loc) · 1.22 KB
/
deployment.yaml
File metadata and controls
57 lines (57 loc) · 1.22 KB
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
apiVersion: v1
kind: ServiceAccount
metadata:
name: sidecar-controller-sa
namespace: kube-system
---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: sidecar-controller-cr
namespace: kube-system
rules:
- apiGroups: [""]
resources: ["pods"]
verbs: ["list", "watch"]
- apiGroups: [""]
resources: ["pods/exec"]
verbs: ["create"]
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: sidecar-controller-crb
namespace: kube-system
subjects:
- kind: ServiceAccount
name: sidecar-controller-sa
namespace: kube-system
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: sidecar-controller-cr
---
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: kube-system
name: sidecar-controller
spec:
replicas: 1
selector:
matchLabels:
app: sidecar-controller
template:
metadata:
labels:
app: sidecar-controller
spec:
serviceAccountName: sidecar-controller-sa
containers:
- image: <image_repository>:<image_tag>
imagePullPolicy: Always
name: sidecar-controller
resources:
limits:
cpu: "200m"
memory: "128Mi"