Skip to content

Commit 53d7e29

Browse files
committed
contivNet.sh: switch K8S to standalone OVS
Signed-off-by: Cristian Staretu <[email protected]>
1 parent 43327ae commit 53d7e29

File tree

3 files changed

+59
-88
lines changed

3 files changed

+59
-88
lines changed

install/k8s/contiv/contiv_devtest.yaml

+59-26
Original file line numberDiff line numberDiff line change
@@ -144,12 +144,6 @@ spec:
144144
securityContext:
145145
privileged: true
146146
volumeMounts:
147-
- mountPath: /etc/openvswitch
148-
name: etc-openvswitch
149-
readOnly: false
150-
- mountPath: /lib/modules
151-
name: lib-modules
152-
readOnly: false
153147
- mountPath: /var/run
154148
name: var-run
155149
readOnly: false
@@ -179,12 +173,6 @@ spec:
179173
readOnly: false
180174
volumes:
181175
# Used by contiv-netplugin
182-
- name: etc-openvswitch
183-
hostPath:
184-
path: /etc/openvswitch
185-
- name: lib-modules
186-
hostPath:
187-
path: /lib/modules
188176
- name: var-run
189177
hostPath:
190178
path: /var/run
@@ -278,15 +266,7 @@ spec:
278266
configMapKeyRef:
279267
name: contiv-config
280268
key: contiv_netmode
281-
securityContext:
282-
privileged: true
283269
volumeMounts:
284-
- mountPath: /etc/openvswitch
285-
name: etc-openvswitch
286-
readOnly: false
287-
- mountPath: /lib/modules
288-
name: lib-modules
289-
readOnly: false
290270
- mountPath: /var/run
291271
name: var-run
292272
readOnly: false
@@ -310,12 +290,6 @@ spec:
310290
readOnly: false
311291
volumes:
312292
# Used by contiv-netmaster
313-
- name: etc-openvswitch
314-
hostPath:
315-
path: /etc/openvswitch
316-
- name: lib-modules
317-
hostPath:
318-
path: /lib/modules
319293
- name: var-run
320294
hostPath:
321295
path: /var/run
@@ -338,3 +312,62 @@ spec:
338312
hostPath:
339313
path: /opt/gopath/src/github.com/contiv/netplugin/scripts/netContain/scripts/
340314
---
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

scripts/netContain/scripts/contivNet.sh

-6
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,6 @@ if [ -d /var/contiv/log ]; then
5858
echo "INFO: Copied contiv log from /var/contiv/log (deprecated) to /var/log/contiv"
5959
fi
6060

61-
if [ "$CONTIV_ROLE" = "netplugin" ]; then
62-
echo "INFO: Initializing OVS"
63-
/contiv/scripts/ovsInit.sh
64-
echo "INFO: Initialized OVS"
65-
fi
66-
6761
if [ "$CONTIV_MODE" = "kubernetes" ]; then
6862
echo "INFO: Setting kubernetes configs"
6963
mkdir -p /opt/contiv/config

scripts/netContain/scripts/ovsInit.sh

-56
This file was deleted.

0 commit comments

Comments
 (0)