-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.yaml
61 lines (61 loc) · 1.37 KB
/
deploy.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
apiVersion: v1
kind: ServiceAccount
metadata:
name: netpol-ctrl
namespace: kube-system
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: netpol-ctrl-role
rules:
- apiGroups: [""]
resources: ["pods","services"]
verbs: ["get","watch","update","patch","list"]
- apiGroups: ["apps"]
resources: ["deployments", "statefulsets", "daemonsets"]
verbs: ["get","watch","update","patch","list"]
- apiGroups: ["extensions", "networking.k8s.io"]
resources: ["ingresses"]
verbs: ["get","watch","update","patch","list"]
- apiGroups: ["batch"]
resources: ["jobs"]
verbs: ["get","watch","update","patch","list"]
- apiGroups: ["networking.k8s.io"]
resources: ["networkpolicies"]
verbs: ["*"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: netpol-ctrl-binding
subjects:
- kind: ServiceAccount
name: netpol-ctrl
namespace: kube-system
roleRef:
kind: ClusterRole
name: netpol-ctrl-role
apiGroup: rbac.authorization.k8s.io
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: netpol-ctrl
namespace: kube-system
labels:
app: netpol-ctrl
spec:
replicas: 1
selector:
matchLabels:
app: netpol-ctrl
template:
metadata:
labels:
app: netpol-ctrl
spec:
serviceAccountName: netpol-ctrl
containers:
- name: netpol-ctrl
image: adykaaa/k8s-netpol-ctrl:0.1.0