@@ -15,8 +15,10 @@ class ContivComposer(object):
15
15
def add_systest (self , resource , args ):
16
16
if self ._is_resource (resource , 'ConfigMap' , 'contiv-config' ,
17
17
'kube-system' ):
18
- # pop contiv_etcd (etcd or consul endpoints will be passed in during testing)
19
- resource ['data' ].pop ('contiv_etcd' )
18
+ if args ['start' ] != True :
19
+ # pop contiv_etcd unless need start contiv service
20
+ # etcd or consul endpoints will be passed in during testing
21
+ resource ['data' ].pop ('contiv_etcd' )
20
22
if (self ._is_resource (resource , 'DaemonSet' , 'contiv-netplugin' ,
21
23
'kube-system' ) or
22
24
self ._is_resource (resource , 'ReplicaSet' , 'contiv-netmaster' ,
@@ -25,32 +27,37 @@ class ContivComposer(object):
25
27
'containers' ]:
26
28
if container ['name' ] in ('contiv-netplugin' ,
27
29
'contiv-netmaster' ):
28
- # pop etcd endpoints because test case will handle it
29
- container ['env' ] = [
30
- envar
31
- for envar in container ['env' ]
32
- if envar [
33
- 'name' ] not in ('CONTIV_NETPLUGIN_ETCD_ENDPOINTS' ,
34
- 'CONTIV_NETMASTER_ETCD_ENDPOINTS' )
35
- ]
36
- # make the container idle
37
- container ['command' ] = ["tail" , "-f" , "/dev/null" ]
30
+ if args ['start' ] != True :
31
+ # pop etcd endpoints because test case will handle it
32
+ container ['env' ] = [
33
+ envar
34
+ for envar in container ['env' ]
35
+ if envar [
36
+ 'name' ] not in (
37
+ 'CONTIV_NETPLUGIN_ETCD_ENDPOINTS' ,
38
+ 'CONTIV_NETMASTER_ETCD_ENDPOINTS' )
39
+ ]
40
+ # make the container idle
41
+ container ['command' ] = ["tail" , "-f" , "/dev/null" ]
38
42
# add binary mount points to run tests
39
43
container ['volumeMounts' ].append ({
40
44
'mountPath' : '/contiv/bin' ,
41
45
'name' : 'contiv-bin-dir' ,
42
- 'readOnly' : False
46
+ 'readOnly' : True
43
47
})
48
+
44
49
container ['volumeMounts' ].append ({
45
50
'mountPath' : '/contiv/scripts/' ,
46
51
'name' : 'contiv-scripts-dir' ,
47
- 'readOnly' : False
48
- })
49
- container ['volumeMounts' ].append ({
50
- 'mountPath' : '/var/log/contiv' ,
51
- 'name' : 'contiv-log-dir' ,
52
- 'readOnly' : False
52
+ 'readOnly' : True
53
53
})
54
+
55
+ if args ['start' ] != True :
56
+ container ['volumeMounts' ].append ({
57
+ 'mountPath' : '/var/log/contiv' ,
58
+ 'name' : 'contiv-log-dir' ,
59
+ 'readOnly' : False
60
+ })
54
61
resource ['spec' ]['template' ]['spec' ]['volumes' ].append ({
55
62
'name' : 'contiv-bin-dir' ,
56
63
'hostPath' : {'path' : '/opt/gopath/bin' }
@@ -62,12 +69,12 @@ class ContivComposer(object):
62
69
'/opt/gopath/src/github.com/contiv/netplugin/scripts/netContain/scripts/'
63
70
}
64
71
})
65
- # systest logging files
66
- resource [ 'spec' ][ 'template' ][ 'spec' ][ 'volumes' ]. append ({
67
- 'name' : 'contiv-log-dir' ,
68
- 'hostPath' : { 'path ' : '/var/log/ contiv' }
69
- })
70
-
72
+ if args [ 'start' ] != True :
73
+ # systest logging files
74
+ resource [ 'spec' ][ 'template' ][ 'spec' ][ 'volumes' ]. append ({
75
+ 'name ' : 'contiv-log-dir' ,
76
+ 'hostPath' : { 'path' : '/var/log/contiv' }
77
+ })
71
78
72
79
def add_prometheus (self , resource , args ):
73
80
if (self ._is_resource (resource , 'DaemonSet' , 'contiv-netplugin' ,
@@ -295,10 +302,12 @@ def create_cli_args():
295
302
systest_parser = subclis .add_parser (
296
303
'add-systest' ,
297
304
description = "Add system test required updates" )
305
+ systest_parser .add_argument ('--start' ,
306
+ action = 'store_true' ,
307
+ help = 'start contiv service' )
298
308
_add_common_args (systest_parser )
299
309
_add_image_args (systest_parser )
300
310
301
-
302
311
# add prometheus
303
312
prometheus_parser = subclis .add_parser (
304
313
'add-prometheus' ,
0 commit comments