@@ -144,12 +144,6 @@ spec:
144
144
securityContext :
145
145
privileged : true
146
146
volumeMounts :
147
- - mountPath : /etc/openvswitch
148
- name : etc-openvswitch
149
- readOnly : false
150
- - mountPath : /lib/modules
151
- name : lib-modules
152
- readOnly : false
153
147
- mountPath : /var/run
154
148
name : var-run
155
149
readOnly : false
@@ -179,12 +173,6 @@ spec:
179
173
readOnly : false
180
174
volumes :
181
175
# Used by contiv-netplugin
182
- - name : etc-openvswitch
183
- hostPath :
184
- path : /etc/openvswitch
185
- - name : lib-modules
186
- hostPath :
187
- path : /lib/modules
188
176
- name : var-run
189
177
hostPath :
190
178
path : /var/run
@@ -278,15 +266,7 @@ spec:
278
266
configMapKeyRef :
279
267
name : contiv-config
280
268
key : contiv_netmode
281
- securityContext :
282
- privileged : true
283
269
volumeMounts :
284
- - mountPath : /etc/openvswitch
285
- name : etc-openvswitch
286
- readOnly : false
287
- - mountPath : /lib/modules
288
- name : lib-modules
289
- readOnly : false
290
270
- mountPath : /var/run
291
271
name : var-run
292
272
readOnly : false
@@ -310,12 +290,6 @@ spec:
310
290
readOnly : false
311
291
volumes :
312
292
# Used by contiv-netmaster
313
- - name : etc-openvswitch
314
- hostPath :
315
- path : /etc/openvswitch
316
- - name : lib-modules
317
- hostPath :
318
- path : /lib/modules
319
293
- name : var-run
320
294
hostPath :
321
295
path : /var/run
@@ -338,3 +312,62 @@ spec:
338
312
hostPath :
339
313
path : /opt/gopath/src/github.com/contiv/netplugin/scripts/netContain/scripts/
340
314
---
315
+ # This manifest deploys the contiv-ovs pod.
316
+ kind : DaemonSet
317
+ apiVersion : extensions/v1beta1
318
+ metadata :
319
+ name : contiv-ovs
320
+ namespace : kube-system
321
+ labels :
322
+ k8s-app : contiv-ovs
323
+ spec :
324
+ selector :
325
+ matchLabels :
326
+ k8s-app : contiv-ovs
327
+ template :
328
+ metadata :
329
+ labels :
330
+ k8s-app : contiv-ovs
331
+ spec :
332
+ hostNetwork : true
333
+ hostPID : true
334
+ containers :
335
+ # Runs ovs containers on each Kubernetes node.
336
+ - name : contiv-ovsdb-server
337
+ image : contiv/ovs:latest
338
+ command : ["/scripts/start-ovsdb-server.sh"]
339
+ securityContext :
340
+ privileged : false
341
+ volumeMounts :
342
+ - mountPath : /etc/openvswitch
343
+ name : etc-openvswitch
344
+ readOnly : false
345
+ - mountPath : /var/run
346
+ name : var-run
347
+ readOnly : false
348
+ - name : contiv-ovs-vswitchd
349
+ image : contiv/ovs:latest
350
+ command : ["/scripts/start-ovs-vswitchd.sh"]
351
+ securityContext :
352
+ privileged : true
353
+ volumeMounts :
354
+ - mountPath : /etc/openvswitch
355
+ name : etc-openvswitch
356
+ readOnly : false
357
+ - mountPath : /lib/modules
358
+ name : lib-modules
359
+ readOnly : true
360
+ - mountPath : /var/run
361
+ name : var-run
362
+ readOnly : false
363
+ volumes :
364
+ # Used by contiv-ovs
365
+ - name : etc-openvswitch
366
+ hostPath :
367
+ path : /etc/openvswitch
368
+ - name : lib-modules
369
+ hostPath :
370
+ path : /lib/modules
371
+ - name : var-run
372
+ hostPath :
373
+ path : /var/run
0 commit comments