-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathipvs-controller-deployment.yaml
117 lines (111 loc) · 2.32 KB
/
ipvs-controller-deployment.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1beta1
metadata:
name: ipvs-controller
rules:
- apiGroups:
- ""
resources:
- services
- endpoints
verbs:
- get
- list
- watch
- apiGroups:
- ""
resources:
- events
verbs:
- create
- get
- list
- patch
- update
- watch
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: ipvs-controller
namespace: kube-system
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1beta1
metadata:
name: ipvs-controller
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: ipvs-controller
subjects:
- kind: ServiceAccount
name: ipvs-controller
namespace: kube-system
---
apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
name: ipvs-controller
namespace: kube-system
labels:
app: ipvs-controller
k8s-app: dw-ipvs
annotations:
prometheus.io/path: "/metrics"
prometheus.io/port: "8123"
prometheus.io/scrape: "true"
spec:
updateStrategy:
type: RollingUpdate
template:
metadata:
labels:
app: ipvs-controller
k8s-app: dw-ipvs
spec:
serviceAccountName: ipvs-controller
hostNetwork: true
hostIPC: true
hostPID: true
containers:
- image: Demonware/ipvs-controller:v0.1.1-0-g5eee68f
name: ipvs-controller
resources:
limits:
cpu: 2000m
memory: 4096Mi
requests:
cpu: 2000m
memory: 4096Mi
args: ["-kubeconfig", "", "-logtostderr", "-cidr", "10.49.251.0/24" ,"-v", "2"]
livenessProbe:
httpGet:
path: /healthz
port: health
initialDelaySeconds: 30
periodSeconds: 5
ports:
- containerPort: 8123
name: metrics
- containerPort: 8124
name: health
securityContext:
privileged: true
capabilities:
add: ["ALL"]
imagePullPolicy: "Always"
volumeMounts:
- name: lib-modules
mountPath: /lib/modules
readOnly: true
volumes:
- name: lib-modules
hostPath:
path: /lib/modules
nodeSelector:
node-role.kubernetes.io/ipvs: ""
tolerations:
- key: "node-role.kubernetes.io/ipvs"
effect: NoSchedule