blob: f84da49a68f42cd54f36bc69cdf93ee1edc96df2 [file] [log] [blame]
A R Karthick41adfce2016-06-10 09:51:25 -07001#
Chetan Gaonkercfcce782016-05-10 10:10:42 -07002# Copyright 2016-present Ciena Corporation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
A R Karthick41adfce2016-06-10 09:51:25 -07007#
Chetan Gaonkercfcce782016-05-10 10:10:42 -07008# http://www.apache.org/licenses/LICENSE-2.0
A R Karthick41adfce2016-06-10 09:51:25 -07009#
Chetan Gaonkercfcce782016-05-10 10:10:42 -070010# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
Chetan Gaonker3533faa2016-04-25 17:50:14 -070016import os,time
17import io
18import json
A R Karthickd44cea12016-07-20 12:16:41 -070019import yaml
A.R Karthickc4e474d2016-12-12 15:24:57 -080020import errno
A R Karthickaa54a1c2016-12-15 11:42:08 -080021import copy
Chetan Gaonker3533faa2016-04-25 17:50:14 -070022from pyroute2 import IPRoute
A.R Karthickc4e474d2016-12-12 15:24:57 -080023from pyroute2.netlink import NetlinkError
Chetan Gaonker3533faa2016-04-25 17:50:14 -070024from itertools import chain
25from nsenter import Namespace
26from docker import Client
A R Karthick85eb1862017-01-23 16:10:57 -080027from docker import utils as dockerutils
A.R Karthickf184b342017-01-27 19:30:50 -080028import shutil
A.R Karthick95d044e2016-06-10 18:44:36 -070029from OnosCtrl import OnosCtrl
A R Karthick19aaf5c2016-11-09 17:47:57 -080030from OnosLog import OnosLog
A R Karthick03bd2812017-03-03 17:49:17 -080031from onosclidriver import OnosCliDriver
A.R Karthickc4e474d2016-12-12 15:24:57 -080032from threadPool import ThreadPool
A R Karthickaa54a1c2016-12-15 11:42:08 -080033from threading import Lock
Chetan Gaonker3533faa2016-04-25 17:50:14 -070034
35class docker_netns(object):
36
37 dckr = Client()
38 def __init__(self, name):
39 pid = int(self.dckr.inspect_container(name)['State']['Pid'])
40 if pid == 0:
41 raise Exception('no container named {0}'.format(name))
42 self.pid = pid
43
44 def __enter__(self):
45 pid = self.pid
46 if not os.path.exists('/var/run/netns'):
47 os.mkdir('/var/run/netns')
48 os.symlink('/proc/{0}/ns/net'.format(pid), '/var/run/netns/{0}'.format(pid))
49 return str(pid)
50
51 def __exit__(self, type, value, traceback):
52 pid = self.pid
53 os.unlink('/var/run/netns/{0}'.format(pid))
54
55flatten = lambda l: chain.from_iterable(l)
56
57class Container(object):
58 dckr = Client()
A R Karthick07608ef2016-08-23 16:51:19 -070059 IMAGE_PREFIX = '' ##for saving global prefix for all test classes
A R Karthickaa54a1c2016-12-15 11:42:08 -080060 CONFIG_LOCK = Lock()
A R Karthick07608ef2016-08-23 16:51:19 -070061
62 def __init__(self, name, image, prefix='', tag = 'candidate', command = 'bash', quagga_config = None):
Chetan Gaonker3533faa2016-04-25 17:50:14 -070063 self.name = name
A R Karthick07608ef2016-08-23 16:51:19 -070064 self.prefix = prefix
65 if prefix:
66 self.prefix += '/'
67 image = '{}{}'.format(self.prefix, image)
Chetan Gaonker3533faa2016-04-25 17:50:14 -070068 self.image = image
69 self.tag = tag
A R Karthickd44cea12016-07-20 12:16:41 -070070 if tag:
71 self.image_name = image + ':' + tag
72 else:
73 self.image_name = image
Chetan Gaonker3533faa2016-04-25 17:50:14 -070074 self.id = None
75 self.command = command
Chetan Gaonker8e25e1b2016-05-02 13:42:21 -070076 self.quagga_config = quagga_config
Chetan Gaonker3533faa2016-04-25 17:50:14 -070077
78 @classmethod
79 def build_image(cls, dockerfile, tag, force=True, nocache=False):
80 f = io.BytesIO(dockerfile.encode('utf-8'))
81 if force or not cls.image_exists(tag):
82 print('Build {0}...'.format(tag))
83 for line in cls.dckr.build(fileobj=f, rm=True, tag=tag, decode=True, nocache=nocache):
84 if 'stream' in line:
85 print(line['stream'].strip())
86
87 @classmethod
88 def image_exists(cls, name):
A R Karthicke07fc3a2017-02-27 10:49:29 -080089 #return name in [ctn['RepoTags'][0] for ctn in cls.dckr.images()]
90 return name in list( flatten(ctn['RepoTags'] if ctn['RepoTags'] else '' for ctn in cls.dckr.images()) )
Chetan Gaonker3533faa2016-04-25 17:50:14 -070091
92 @classmethod
93 def create_host_config(cls, port_list = None, host_guest_map = None, privileged = False):
94 port_bindings = None
95 binds = None
96 if port_list:
97 port_bindings = {}
98 for p in port_list:
99 port_bindings[str(p)] = str(p)
100
101 if host_guest_map:
102 binds = []
103 for h, g in host_guest_map:
104 binds.append('{0}:{1}'.format(h, g))
105
106 return cls.dckr.create_host_config(binds = binds, port_bindings = port_bindings, privileged = privileged)
107
108 @classmethod
A R Karthick85eb1862017-01-23 16:10:57 -0800109 def connect_to_network(cls, name, network):
110 try:
111 cls.dckr.connect_container_to_network(name, network)
112 return True
113 except:
114 return False
115
116 @classmethod
117 def create_network(cls, network, subnet = None, gateway = None):
118 ipam_config = None
119 if subnet is not None and gateway is not None:
120 ipam_pool = dockerutils.create_ipam_pool(subnet = subnet, gateway = gateway)
121 ipam_config = dockerutils.create_ipam_config(pool_configs = [ipam_pool])
122 cls.dckr.create_network(network, driver='bridge', ipam = ipam_config)
123
124 @classmethod
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700125 def cleanup(cls, image):
A R Karthick09b1f4e2016-05-12 14:31:50 -0700126 cnt_list = filter(lambda c: c['Image'] == image, cls.dckr.containers(all=True))
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700127 for cnt in cnt_list:
128 print('Cleaning container %s' %cnt['Id'])
A.R Karthick95d044e2016-06-10 18:44:36 -0700129 if cnt.has_key('State') and cnt['State'] == 'running':
A R Karthick09b1f4e2016-05-12 14:31:50 -0700130 cls.dckr.kill(cnt['Id'])
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700131 cls.dckr.remove_container(cnt['Id'], force=True)
132
133 @classmethod
134 def remove_container(cls, name, force=True):
135 try:
136 cls.dckr.remove_container(name, force = force)
137 except: pass
138
139 def exists(self):
140 return '/{0}'.format(self.name) in list(flatten(n['Names'] for n in self.dckr.containers()))
141
142 def img_exists(self):
A R Karthicke07fc3a2017-02-27 10:49:29 -0800143 #return self.image_name in [ctn['RepoTags'][0] if ctn['RepoTags'] else '' for ctn in self.dckr.images()]
144 return self.image_name in list( flatten(ctn['RepoTags'] if ctn['RepoTags'] else '' for ctn in self.dckr.images()) )
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700145
A R Karthick75844572017-01-23 16:57:44 -0800146 def ip(self, network = None):
A R Karthick2b93d6a2016-09-06 15:19:09 -0700147 cnt_list = filter(lambda c: c['Names'][0] == '/{}'.format(self.name), self.dckr.containers())
148 #if not cnt_list:
149 # cnt_list = filter(lambda c: c['Image'] == self.image_name, self.dckr.containers())
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700150 cnt_settings = cnt_list.pop()
A R Karthick75844572017-01-23 16:57:44 -0800151 if network is not None and cnt_settings['NetworkSettings']['Networks'].has_key(network):
152 return cnt_settings['NetworkSettings']['Networks'][network]['IPAddress']
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700153 return cnt_settings['NetworkSettings']['Networks']['bridge']['IPAddress']
154
A R Karthick2b93d6a2016-09-06 15:19:09 -0700155 @classmethod
156 def ips(cls, image_name):
157 cnt_list = filter(lambda c: c['Image'] == image_name, cls.dckr.containers())
158 ips = [ cnt['NetworkSettings']['Networks']['bridge']['IPAddress'] for cnt in cnt_list ]
159 return ips
160
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700161 def kill(self, remove = True):
162 self.dckr.kill(self.name)
163 self.dckr.remove_container(self.name, force=True)
164
A R Karthick41adfce2016-06-10 09:51:25 -0700165 def start(self, rm = True, ports = None, volumes = None, host_config = None,
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700166 environment = None, tty = False, stdin_open = True):
167
168 if rm and self.exists():
169 print('Removing container:', self.name)
170 self.dckr.remove_container(self.name, force=True)
171
A R Karthick41adfce2016-06-10 09:51:25 -0700172 ctn = self.dckr.create_container(image=self.image_name, ports = ports, command=self.command,
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700173 detach=True, name=self.name,
A R Karthick41adfce2016-06-10 09:51:25 -0700174 environment = environment,
175 volumes = volumes,
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700176 host_config = host_config, stdin_open=stdin_open, tty = tty)
177 self.dckr.start(container=self.name)
Chetan Gaonker8e25e1b2016-05-02 13:42:21 -0700178 if self.quagga_config:
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700179 self.connect_to_br()
180 self.id = ctn['Id']
181 return ctn
182
Thangavelu K Sef6f0a52016-12-14 19:57:05 +0000183 @classmethod
184 def pause_container(cls, image, delay):
185 cnt_list = filter(lambda c: c['Image'] == image, cls.dckr.containers(all=True))
186 for cnt in cnt_list:
187 print('Pause the container %s' %cnt['Id'])
188 if cnt.has_key('State') and cnt['State'] == 'running':
189 cls.dckr.pause(cnt['Id'])
190 if delay != 0:
191 time.sleep(delay)
192 for cnt in cnt_list:
193 print('Unpause the container %s' %cnt['Id'])
194 cls.dckr.unpause(cnt['Id'])
195 else:
196 print('Infinity time pause the container %s' %cnt['Id'])
197 return 'success'
198
A R Karthick52414732017-01-31 09:59:47 -0800199 def connect_to_br(self, index = 0):
A R Karthickaa54a1c2016-12-15 11:42:08 -0800200 self.CONFIG_LOCK.acquire()
201 try:
202 with docker_netns(self.name) as pid:
203 for quagga_config in self.quagga_config:
Chetan Gaonker8e25e1b2016-05-02 13:42:21 -0700204 ip = IPRoute()
A R Karthickaa54a1c2016-12-15 11:42:08 -0800205 br = ip.link_lookup(ifname=quagga_config['bridge'])
206 if len(br) == 0:
207 try:
208 ip.link_create(ifname=quagga_config['bridge'], kind='bridge')
209 except NetlinkError as e:
210 err, _ = e.args
211 if err == errno.EEXIST:
212 pass
213 else:
214 raise NetlinkError(*e.args)
215 br = ip.link_lookup(ifname=quagga_config['bridge'])
216 br = br[0]
217 ip.link('set', index=br, state='up')
A R Karthick52414732017-01-31 09:59:47 -0800218 ifname = '{0}-{1}'.format(self.name[:12], index)
A R Karthickaa54a1c2016-12-15 11:42:08 -0800219 ifs = ip.link_lookup(ifname=ifname)
220 if len(ifs) > 0:
221 ip.link_remove(ifs[0])
222 peer_ifname = '{0}-{1}'.format(pid, index)
223 ip.link_create(ifname=ifname, kind='veth', peer=peer_ifname)
224 host = ip.link_lookup(ifname=ifname)[0]
225 ip.link('set', index=host, master=br)
226 ip.link('set', index=host, state='up')
227 guest = ip.link_lookup(ifname=peer_ifname)[0]
228 ip.link('set', index=guest, net_ns_fd=pid)
229 with Namespace(pid, 'net'):
230 ip = IPRoute()
231 ip.link('set', index=guest, ifname='eth{}'.format(index+1))
232 ip.addr('add', index=guest, address=quagga_config['ip'], mask=quagga_config['mask'])
233 ip.link('set', index=guest, state='up')
234 index += 1
235 finally:
236 self.CONFIG_LOCK.release()
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700237
Thangavelu K Sef6f0a52016-12-14 19:57:05 +0000238 def execute(self, cmd, tty = True, stream = False, shell = False, detach = True):
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700239 res = 0
240 if type(cmd) == str:
241 cmds = (cmd,)
242 else:
243 cmds = cmd
244 if shell:
245 for c in cmds:
246 res += os.system('docker exec {0} {1}'.format(self.name, c))
247 return res
248 for c in cmds:
249 i = self.dckr.exec_create(container=self.name, cmd=c, tty = tty, privileged = True)
A R Karthickd6dd9b22017-02-24 15:17:22 -0800250 s = self.dckr.exec_start(i['Id'], stream = stream, detach=detach, socket=True)
251 try:
252 s.close()
253 except: pass
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700254 result = self.dckr.exec_inspect(i['Id'])
255 res += 0 if result['ExitCode'] == None else result['ExitCode']
256 return res
257
ChetanGaonker6138fcd2016-08-18 17:56:39 -0700258 def restart(self, timeout =10):
259 return self.dckr.restart(self.name, timeout)
260
A R Karthickc69d73e2017-01-20 11:44:34 -0800261def get_mem(jvm_heap_size = None, instances = 1):
A R Karthick1f908202016-11-16 17:32:20 -0800262 if instances <= 0:
263 instances = 1
A R Karthickc69d73e2017-01-20 11:44:34 -0800264 heap_size = jvm_heap_size
265 heap_size_i = 0
266 #sanitize the heap size config
267 if heap_size is not None:
268 if not heap_size.isdigit():
269 try:
270 heap_size_i = int(heap_size[:-1])
271 suffix = heap_size[-1]
272 if suffix == 'M':
273 heap_size_i /= 1024 #convert to gigs
A.R Karthick99044822017-02-09 14:04:20 -0800274 #allow to specific minimum heap size
275 if heap_size_i == 0:
276 return heap_size
A R Karthickc69d73e2017-01-20 11:44:34 -0800277 except:
278 ##invalid suffix length probably. Fall back to default
279 heap_size = None
280 else:
281 heap_size_i = int(heap_size)
282
Chetan Gaonker462d9fa2016-05-03 16:39:10 -0700283 with open('/proc/meminfo', 'r') as fd:
284 meminfo = fd.readlines()
285 mem = 0
286 for m in meminfo:
287 if m.startswith('MemTotal:') or m.startswith('SwapTotal:'):
288 mem += int(m.split(':')[1].strip().split()[0])
289
A R Karthick1f908202016-11-16 17:32:20 -0800290 mem = max(mem/1024/1024/2/instances, 1)
Chetan Gaonker6d0a7b02016-05-03 16:57:28 -0700291 mem = min(mem, 16)
A R Karthickc69d73e2017-01-20 11:44:34 -0800292
293 if heap_size_i:
294 #we take the minimum of the provided heap size and max allowed heap size
295 heap_size_i = min(heap_size_i, mem)
296 else:
297 heap_size_i = mem
298
299 return '{}G'.format(heap_size_i)
Chetan Gaonker462d9fa2016-05-03 16:39:10 -0700300
A R Karthickd44cea12016-07-20 12:16:41 -0700301class OnosCord(Container):
302 """Use this when running the cord tester agent on the onos compute node"""
A R Karthickd44cea12016-07-20 12:16:41 -0700303 onos_config_dir_guest = '/root/onos/config'
A R Karthick03bd2812017-03-03 17:49:17 -0800304 synchronizer_map = { 'vtn' : { 'install':
305 ('http://mavenrepo:8080/repository/org/opencord/cord-config/1.2-SNAPSHOT/cord-config-1.2-SNAPSHOT.oar',
306 'http://mavenrepo:8080/repository/org/opencord/vtn/1.2-SNAPSHOT/vtn-1.2-SNAPSHOT.oar',),
307 'activate':
308 ('org.onosproject.ovsdb-base', 'org.onosproject.drivers.ovsdb',
309 'org.onosproject.dhcp', 'org.onosproject.optical-model',
310 'org.onosproject.openflow-base', 'org.onosproject.proxyarp',
311 'org.onosproject.hostprovider'),
312 },
313 'fabric' : { 'activate':
314 ('org.onosproject.hostprovider', 'org.onosproject.optical-model',
315 'org.onosproject.openflow-base', 'org.onosproject.vrouter',
316 'org.onosproject.netcfghostprovider', 'org.onosproject.netcfglinksprovider',
317 'org.onosproject.segmentrouting', 'org.onosproject.proxyarp'),
318 }
319 }
320 tester_apps = ('http://mavenrepo:8080/repository/org/opencord/aaa/1.2-SNAPSHOT/aaa-1.2-SNAPSHOT.oar',
321 'http://mavenrepo:8080/repository/org/opencord/igmp/1.2-SNAPSHOT/igmp-1.2-SNAPSHOT.oar',)
A R Karthickd44cea12016-07-20 12:16:41 -0700322
A.R Karthickddf12772017-05-17 13:49:47 -0700323 old_service_profile = '/opt/cord/orchestration/service-profile/cord-pod'
A R Karthick49529c52017-05-19 09:43:01 -0700324 cord_profile = '/opt/cord_profile'
A.R Karthickddf12772017-05-17 13:49:47 -0700325
A R Karthick03bd2812017-03-03 17:49:17 -0800326 def __init__(self, onos_ip, conf, service_profile, synchronizer, start = True, boot_delay = 5):
A.R Karthickf184b342017-01-27 19:30:50 -0800327 if not os.access(conf, os.F_OK):
328 raise Exception('ONOS cord configuration location %s is invalid' %conf)
A.R Karthickddf12772017-05-17 13:49:47 -0700329 self.old_cord = False
330 if os.access(self.old_service_profile, os.F_OK):
331 self.old_cord = True
A R Karthickbd9b8a32016-07-21 09:56:45 -0700332 self.onos_ip = onos_ip
A.R Karthickf184b342017-01-27 19:30:50 -0800333 self.onos_cord_dir = conf
A R Karthickbd9b8a32016-07-21 09:56:45 -0700334 self.boot_delay = boot_delay
A.R Karthickf184b342017-01-27 19:30:50 -0800335 self.synchronizer = synchronizer
336 self.service_profile = service_profile
337 self.docker_yaml = os.path.join(conf, 'docker-compose.yml')
338 self.docker_yaml_saved = os.path.join(conf, 'docker-compose.yml.saved')
339 self.onos_config_dir = os.path.join(conf, 'config')
340 self.onos_cfg_save_loc = os.path.join(conf, 'network-cfg.json.saved')
341 instance_active = False
342 #if we have a wrapper onos instance already active, back out
343 if os.access(self.onos_config_dir, os.F_OK) or os.access(self.docker_yaml_saved, os.F_OK):
344 instance_active = True
345 else:
346 if start is True:
347 os.mkdir(self.onos_config_dir)
348 shutil.copy(self.docker_yaml, self.docker_yaml_saved)
A R Karthickd44cea12016-07-20 12:16:41 -0700349
A.R Karthickf184b342017-01-27 19:30:50 -0800350 self.start_wrapper = instance_active is False and start is True
A R Karthickd44cea12016-07-20 12:16:41 -0700351 ##update the docker yaml with the config volume
352 with open(self.docker_yaml, 'r') as f:
353 yaml_config = yaml.load(f)
354 image = yaml_config['services'].keys()[0]
A.R Karthickf184b342017-01-27 19:30:50 -0800355 cord_conf_dir_basename = os.path.basename(self.onos_cord_dir.replace('-', ''))
356 xos_onos_name = '{}_{}_1'.format(cord_conf_dir_basename, image)
A R Karthick5778a792017-01-31 13:47:16 -0800357 if not yaml_config['services'][image].has_key('volumes'):
358 yaml_config['services'][image]['volumes'] = []
A R Karthickd44cea12016-07-20 12:16:41 -0700359 volumes = yaml_config['services'][image]['volumes']
360 config_volumes = filter(lambda e: e.find(self.onos_config_dir_guest) >= 0, volumes)
361 if not config_volumes:
362 config_volume = '{}:{}'.format(self.onos_config_dir, self.onos_config_dir_guest)
363 volumes.append(config_volume)
A.R Karthickf184b342017-01-27 19:30:50 -0800364 if self.start_wrapper:
365 docker_yaml_changed = '{}-changed'.format(self.docker_yaml)
366 with open(docker_yaml_changed, 'w') as wf:
367 yaml.dump(yaml_config, wf)
368 os.rename(docker_yaml_changed, self.docker_yaml)
A R Karthickd44cea12016-07-20 12:16:41 -0700369 self.volumes = volumes
370
A R Karthickd44cea12016-07-20 12:16:41 -0700371 ##Create an container instance of xos onos
A R Karthick52414732017-01-31 09:59:47 -0800372 super(OnosCord, self).__init__(xos_onos_name, image, tag = '', quagga_config = Onos.QUAGGA_CONFIG)
A.R Karthickf184b342017-01-27 19:30:50 -0800373 self.last_cfg = None
374 if self.start_wrapper:
375 #fetch the current config of onos cord instance and save it
376 try:
377 self.last_cfg = OnosCtrl.get_config(controller = onos_ip)
378 json_data = json.dumps(self.last_cfg, indent=4)
379 with open(self.onos_cfg_save_loc, 'w') as f:
380 f.write(json_data)
381 except:
382 pass
383 #start the container back with the shared onos config volume
384 self.start()
A R Karthickd44cea12016-07-20 12:16:41 -0700385
A R Karthick03bd2812017-03-03 17:49:17 -0800386 def cliEnter(self):
387 retries = 0
388 while retries < 30:
389 cli = OnosCliDriver(controller = self.onos_ip, connect = True)
390 if cli.handle:
391 return cli
392 else:
393 retries += 1
A R Karthick72fcbc52017-03-06 12:35:17 -0800394 time.sleep(3)
A R Karthick03bd2812017-03-03 17:49:17 -0800395
396 return None
397
398 def cliExit(self, cli):
399 if cli:
400 cli.disconnect()
401
A.R Karthickddf12772017-05-17 13:49:47 -0700402 def synchronize_fabric(self, cfg = None):
403 if self.old_cord is True:
404 cmds = [ 'cd {} && make {}'.format(self.old_service_profile, self.synchronizer),
405 'sleep 30'
406 ]
407 for cmd in cmds:
408 try:
409 os.system(cmd)
410 except:
411 pass
412
A R Karthick03bd2812017-03-03 17:49:17 -0800413 def synchronize_vtn(self, cfg = None):
A.R Karthickddf12772017-05-17 13:49:47 -0700414 if self.old_cord is True:
415 cmds = [ 'cd {} && make {}'.format(self.old_service_profile, self.synchronizer),
416 'sleep 30'
417 ]
418 for cmd in cmds:
419 try:
420 os.system(cmd)
421 except:
422 pass
423 return
A R Karthick03bd2812017-03-03 17:49:17 -0800424 if cfg is None:
425 return
426 if not cfg.has_key('apps'):
427 return
428 if not cfg['apps'].has_key('org.opencord.vtn'):
429 return
430 vtn_neutron_cfg = cfg['apps']['org.opencord.vtn']['cordvtn']['openstack']
431 password = vtn_neutron_cfg['password']
432 endpoint = vtn_neutron_cfg['endpoint']
433 user = vtn_neutron_cfg['user']
434 tenant = vtn_neutron_cfg['tenant']
435 vtn_host = cfg['apps']['org.opencord.vtn']['cordvtn']['nodes'][0]['hostname']
436 cli = self.cliEnter()
437 if cli is None:
438 return
439 cli.cordVtnSyncNeutronStates(endpoint, password, tenant = tenant, user = user)
440 time.sleep(2)
441 cli.cordVtnNodeInit(vtn_host)
442 self.cliExit(cli)
443
444 def synchronize(self, cfg_unlink = False):
A R Karthick03bd2812017-03-03 17:49:17 -0800445
446 if not self.synchronizer_map.has_key(self.synchronizer):
447 return
448
449 install_list = ()
450 if self.synchronizer_map[self.synchronizer].has_key('install'):
451 install_list = self.synchronizer_map[self.synchronizer]['install']
452
453 activate_list = ()
454 if self.synchronizer_map[self.synchronizer].has_key('activate'):
455 activate_list = self.synchronizer_map[self.synchronizer]['activate']
456
457 for app_url in install_list:
458 print('Installing app from url: %s' %app_url)
459 OnosCtrl.install_app_from_url(None, None, app_url = app_url, onos_ip = self.onos_ip)
460
461 for app in activate_list:
462 print('Activating app %s' %app)
463 OnosCtrl(app, controller = self.onos_ip).activate()
464 time.sleep(2)
465
466 for app_url in self.tester_apps:
467 print('Installing tester app from url: %s' %app_url)
468 OnosCtrl.install_app_from_url(None, None, app_url = app_url, onos_ip = self.onos_ip)
469
A R Karthick72fcbc52017-03-06 12:35:17 -0800470 cfg = None
471 #restore the saved config after applications are activated
472 if os.access(self.onos_cfg_save_loc, os.F_OK):
473 with open(self.onos_cfg_save_loc, 'r') as f:
474 cfg = json.load(f)
475 try:
476 OnosCtrl.config(cfg, controller = self.onos_ip)
477 if cfg_unlink is True:
478 os.unlink(self.onos_cfg_save_loc)
479 except:
480 pass
481
482 if hasattr(self, 'synchronize_{}'.format(self.synchronizer)):
483 getattr(self, 'synchronize_{}'.format(self.synchronizer))(cfg = cfg)
484
485 #now restart the xos synchronizer container
A R Karthick49529c52017-05-19 09:43:01 -0700486 cmd = None
487 if os.access('{}/onboarding-docker-compose/docker-compose.yml'.format(self.cord_profile), os.F_OK):
488 cmd = 'cd {}/onboarding-docker-compose && \
489 docker-compose -p {} restart xos_synchronizer_{}'.format(self.cord_profile,
490 self.service_profile,
491 self.synchronizer)
492 else:
493 if os.access('{}/docker-compose.yml'.format(self.cord_profile), os.F_OK):
494 cmd = 'cd {} && \
495 docker-compose -p {} restart {}-synchronizer'.format(self.cord_profile,
496 self.service_profile,
497 self.synchronizer)
498 if cmd is not None:
499 try:
500 print(cmd)
501 os.system(cmd)
502 except:
503 pass
A R Karthick03bd2812017-03-03 17:49:17 -0800504
A R Karthickd44cea12016-07-20 12:16:41 -0700505 def start(self, restart = False, network_cfg = None):
A R Karthick928ad622017-01-30 12:18:32 -0800506 if network_cfg is not None:
A R Karthickd44cea12016-07-20 12:16:41 -0700507 json_data = json.dumps(network_cfg, indent=4)
508 with open('{}/network-cfg.json'.format(self.onos_config_dir), 'w') as f:
509 f.write(json_data)
A R Karthick52414732017-01-31 09:59:47 -0800510
511 #we avoid using docker-compose restart for now.
512 #since we don't want to retain the metadata across restarts
A R Karthick03bd2812017-03-03 17:49:17 -0800513 #stop and start and synchronize the services before installing tester cord apps
514 cmds = [ 'cd {} && docker-compose down'.format(self.onos_cord_dir),
515 'cd {} && docker-compose up -d'.format(self.onos_cord_dir),
A R Karthickbc894372017-05-12 16:34:08 -0700516 'sleep 150',
A R Karthick03bd2812017-03-03 17:49:17 -0800517 ]
518 for cmd in cmds:
A.R Karthickf184b342017-01-27 19:30:50 -0800519 try:
A R Karthick03bd2812017-03-03 17:49:17 -0800520 print(cmd)
A.R Karthickf184b342017-01-27 19:30:50 -0800521 os.system(cmd)
A R Karthick03bd2812017-03-03 17:49:17 -0800522 except:pass
A R Karthick52414732017-01-31 09:59:47 -0800523
A R Karthick03bd2812017-03-03 17:49:17 -0800524 self.synchronize()
A R Karthick52414732017-01-31 09:59:47 -0800525 ##we could also connect container to default docker network but disabled for now
526 #Container.connect_to_network(self.name, 'bridge')
A R Karthick52414732017-01-31 09:59:47 -0800527 #connect container to the quagga bridge
528 self.connect_to_br(index = 0)
A.R Karthickf184b342017-01-27 19:30:50 -0800529 print('Waiting %d seconds for ONOS instance to start' %self.boot_delay)
A R Karthickbd9b8a32016-07-21 09:56:45 -0700530 time.sleep(self.boot_delay)
A R Karthickd44cea12016-07-20 12:16:41 -0700531
532 def build_image(self):
533 build_cmd = 'cd {} && docker-compose build'.format(self.onos_cord_dir)
534 os.system(build_cmd)
535
A.R Karthickf184b342017-01-27 19:30:50 -0800536 def restore(self, force = False):
537 restore = self.start_wrapper is True or force is True
538 if not restore:
A.R Karthick263d3fc2017-01-27 12:52:53 -0800539 return
A R Karthick394976f2017-01-31 14:25:16 -0800540 #nothing to restore
541 if not os.access(self.docker_yaml_saved, os.F_OK):
542 return
A R Karthick03bd2812017-03-03 17:49:17 -0800543
A.R Karthickf184b342017-01-27 19:30:50 -0800544 #restore the config files back. The synchronizer restore should bring the last config back
545 cmds = ['cd {} && docker-compose down'.format(self.onos_cord_dir),
546 'rm -rf {}'.format(self.onos_config_dir),
547 'mv {} {}'.format(self.docker_yaml_saved, self.docker_yaml),
548 'cd {} && docker-compose up -d'.format(self.onos_cord_dir),
A R Karthickbc894372017-05-12 16:34:08 -0700549 'sleep 150',
A.R Karthickf184b342017-01-27 19:30:50 -0800550 ]
551 for cmd in cmds:
A.R Karthickb17e2022017-01-27 11:29:26 -0800552 try:
A.R Karthickf184b342017-01-27 19:30:50 -0800553 print(cmd)
554 os.system(cmd)
A.R Karthickb17e2022017-01-27 11:29:26 -0800555 except: pass
556
A R Karthick03bd2812017-03-03 17:49:17 -0800557 self.synchronize(cfg_unlink = True)
A.R Karthickb17e2022017-01-27 11:29:26 -0800558
A.R Karthick1700e0e2016-10-06 18:16:57 -0700559class OnosCordStopWrapper(Container):
560 onos_cord_dir = os.path.join(os.getenv('HOME'), 'cord-tester-cord')
561 docker_yaml = os.path.join(onos_cord_dir, 'docker-compose.yml')
562
563 def __init__(self):
564 if os.access(self.docker_yaml, os.F_OK):
565 with open(self.docker_yaml, 'r') as f:
566 yaml_config = yaml.load(f)
567 image = yaml_config['services'].keys()[0]
568 name = 'cordtestercord_{}_1'.format(image)
569 super(OnosCordStopWrapper, self).__init__(name, image, tag = '')
570 if self.exists():
571 print('Killing container %s' %self.name)
572 self.kill()
573
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700574class Onos(Container):
A R Karthickaa54a1c2016-12-15 11:42:08 -0800575 QUAGGA_CONFIG = [ { 'bridge' : 'quagga-br', 'ip': '10.10.0.4', 'mask' : 16 }, ]
A R Karthicka2492c12016-12-16 10:31:51 -0800576 MAX_INSTANCES = 3
A R Karthickc69d73e2017-01-20 11:44:34 -0800577 JVM_HEAP_SIZE = None
Chetan Gaonker462d9fa2016-05-03 16:39:10 -0700578 SYSTEM_MEMORY = (get_mem(),) * 2
A R Karthicka2492c12016-12-16 10:31:51 -0800579 INSTANCE_MEMORY = (get_mem(instances=MAX_INSTANCES),) * 2
A R Karthickc69d73e2017-01-20 11:44:34 -0800580 JAVA_OPTS_FORMAT = '-Xms{} -Xmx{} -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode'
581 JAVA_OPTS_DEFAULT = JAVA_OPTS_FORMAT.format(*SYSTEM_MEMORY) #-XX:+PrintGCDetails -XX:+PrintGCTimeStamps'
582 JAVA_OPTS_CLUSTER_DEFAULT = JAVA_OPTS_FORMAT.format(*INSTANCE_MEMORY)
583 env = { 'ONOS_APPS' : 'drivers,openflow,proxyarp,vrouter', 'JAVA_OPTS' : JAVA_OPTS_DEFAULT }
A.R Karthicka6c88fd2017-03-13 09:29:41 -0700584 onos_cord_apps = ( ('cord-config', '1.2-SNAPSHOT'),
A R Karthicka652c4a2017-03-10 17:47:08 -0800585 ('aaa', '1.2-SNAPSHOT'),
A.R Karthicka6c88fd2017-03-13 09:29:41 -0700586 ('igmp', '1.2-SNAPSHOT'),
A.R Karthick95d044e2016-06-10 18:44:36 -0700587 )
A.R Karthickdda22062017-02-09 14:39:20 -0800588 ports = [] #[ 8181, 8101, 9876, 6653, 6633, 2000, 2620, 5005 ]
A R Karthickf2f4ca62016-08-17 10:34:08 -0700589 setup_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), '..', 'setup')
590 host_config_dir = os.path.join(setup_dir, 'onos-config')
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700591 guest_config_dir = '/root/onos/config'
A.R Karthickdda22062017-02-09 14:39:20 -0800592 guest_data_dir = '/root/onos/apache-karaf-3.0.8/data'
593 guest_log_file = '/root/onos/apache-karaf-3.0.8/data/log/karaf.log'
A R Karthickf2f4ca62016-08-17 10:34:08 -0700594 onos_gen_partitions = os.path.join(setup_dir, 'onos-gen-partitions')
A R Karthick2b93d6a2016-09-06 15:19:09 -0700595 onos_form_cluster = os.path.join(setup_dir, 'onos-form-cluster')
A.R Karthick95d044e2016-06-10 18:44:36 -0700596 cord_apps_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), '..', 'apps')
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700597 host_guest_map = ( (host_config_dir, guest_config_dir), )
A R Karthick2b93d6a2016-09-06 15:19:09 -0700598 cluster_cfg = os.path.join(host_config_dir, 'cluster.json')
599 cluster_mode = False
600 cluster_instances = []
Chetan Gaonker503032a2016-05-12 12:06:29 -0700601 NAME = 'cord-onos'
A R Karthickf2f4ca62016-08-17 10:34:08 -0700602 ##the ip of ONOS in default cluster.json in setup/onos-config
603 CLUSTER_CFG_IP = '172.17.0.2'
A R Karthick07608ef2016-08-23 16:51:19 -0700604 IMAGE = 'onosproject/onos'
605 TAG = 'latest'
606 PREFIX = ''
A R Karthickf2f4ca62016-08-17 10:34:08 -0700607
608 @classmethod
A R Karthick2b93d6a2016-09-06 15:19:09 -0700609 def generate_cluster_cfg(cls, ip):
610 if type(ip) in [ list, tuple ]:
611 ips = ' '.join(ip)
612 else:
613 ips = ip
A R Karthickf2f4ca62016-08-17 10:34:08 -0700614 try:
A R Karthick2b93d6a2016-09-06 15:19:09 -0700615 cmd = '{} {} {}'.format(cls.onos_gen_partitions, cls.cluster_cfg, ips)
616 os.system(cmd)
617 except: pass
618
619 @classmethod
620 def form_cluster(cls, ips):
621 nodes = ' '.join(ips)
622 try:
623 cmd = '{} {}'.format(cls.onos_form_cluster, nodes)
A R Karthickf2f4ca62016-08-17 10:34:08 -0700624 os.system(cmd)
625 except: pass
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700626
A R Karthick9d48c652016-09-15 09:16:36 -0700627 @classmethod
628 def cleanup_runtime(cls):
629 '''Cleanup ONOS runtime generated files'''
630 files = ( Onos.cluster_cfg, os.path.join(Onos.host_config_dir, 'network-cfg.json') )
631 for f in files:
632 if os.access(f, os.F_OK):
633 try:
634 os.unlink(f)
635 except: pass
636
A R Karthickec2db322016-11-17 15:06:01 -0800637 @classmethod
638 def get_data_map(cls, host_volume, guest_volume_dir):
639 host_volume_dir = os.path.join(cls.setup_dir, os.path.basename(host_volume))
640 if not os.path.exists(host_volume_dir):
641 os.mkdir(host_volume_dir)
642 return ( (host_volume_dir, guest_volume_dir), )
643
644 @classmethod
645 def remove_data_map(cls, host_volume, guest_volume_dir):
646 host_volume_dir = os.path.join(cls.setup_dir, os.path.basename(host_volume))
647 if os.path.exists(host_volume_dir):
A.R Karthickf184b342017-01-27 19:30:50 -0800648 shutil.rmtree(host_volume_dir)
A R Karthickec2db322016-11-17 15:06:01 -0800649
A R Karthick973010f2017-02-06 16:41:51 -0800650 @classmethod
651 def update_data_dir(cls, karaf):
652 Onos.guest_data_dir = '/root/onos/apache-karaf-{}/data'.format(karaf)
653 Onos.guest_log_file = '/root/onos/apache-karaf-{}/data/log/karaf.log'.format(karaf)
654
A R Karthickec2db322016-11-17 15:06:01 -0800655 def remove_data_volume(self):
656 if self.data_map is not None:
657 self.remove_data_map(*self.data_map)
658
A.R Karthick1700e0e2016-10-06 18:16:57 -0700659 def __init__(self, name = NAME, image = IMAGE, prefix = PREFIX, tag = TAG,
A R Karthickec2db322016-11-17 15:06:01 -0800660 boot_delay = 20, restart = False, network_cfg = None,
A R Karthick85eb1862017-01-23 16:10:57 -0800661 cluster = False, data_volume = None, async = False, quagga_config = None,
662 network = None):
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700663 if restart is True:
664 ##Find the right image to restart
665 running_image = filter(lambda c: c['Names'][0] == '/{}'.format(name), self.dckr.containers())
666 if running_image:
667 image_name = running_image[0]['Image']
668 try:
669 image = image_name.split(':')[0]
670 tag = image_name.split(':')[1]
671 except: pass
672
A R Karthickaa54a1c2016-12-15 11:42:08 -0800673 if quagga_config is None:
674 quagga_config = Onos.QUAGGA_CONFIG
675 super(Onos, self).__init__(name, image, prefix = prefix, tag = tag, quagga_config = quagga_config)
A R Karthick2b93d6a2016-09-06 15:19:09 -0700676 self.boot_delay = boot_delay
A R Karthickec2db322016-11-17 15:06:01 -0800677 self.data_map = None
A R Karthickc69d73e2017-01-20 11:44:34 -0800678 instance_memory = (get_mem(jvm_heap_size = Onos.JVM_HEAP_SIZE, instances = Onos.MAX_INSTANCES),) * 2
679 self.env['JAVA_OPTS'] = self.JAVA_OPTS_FORMAT.format(*instance_memory)
A R Karthick2b93d6a2016-09-06 15:19:09 -0700680 if cluster is True:
681 self.ports = []
A R Karthickec2db322016-11-17 15:06:01 -0800682 if data_volume is not None:
683 self.data_map = self.get_data_map(data_volume, self.guest_data_dir)
684 self.host_guest_map = self.host_guest_map + self.data_map
A R Karthick2b93d6a2016-09-06 15:19:09 -0700685 if os.access(self.cluster_cfg, os.F_OK):
686 try:
687 os.unlink(self.cluster_cfg)
688 except: pass
689
690 self.host_config = self.create_host_config(port_list = self.ports,
691 host_guest_map = self.host_guest_map)
692 self.volumes = []
693 for _,g in self.host_guest_map:
694 self.volumes.append(g)
695
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700696 if restart is True and self.exists():
697 self.kill()
A R Karthick2b93d6a2016-09-06 15:19:09 -0700698
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700699 if not self.exists():
700 self.remove_container(name, force=True)
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -0700701 host_config = self.create_host_config(port_list = self.ports,
702 host_guest_map = self.host_guest_map)
703 volumes = []
704 for _,g in self.host_guest_map:
705 volumes.append(g)
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700706 if network_cfg is not None:
A R Karthick81acbff2016-06-17 14:45:16 -0700707 json_data = json.dumps(network_cfg, indent=4)
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700708 with open('{}/network-cfg.json'.format(self.host_config_dir), 'w') as f:
709 f.write(json_data)
A.R Karthickc4e474d2016-12-12 15:24:57 -0800710 if cluster is False or async is False:
711 print('Starting ONOS container %s' %self.name)
712 self.start(ports = self.ports, environment = self.env,
713 host_config = self.host_config, volumes = self.volumes, tty = True)
714 if not restart:
715 ##wait a bit before fetching IP to regenerate cluster cfg
716 time.sleep(5)
717 ip = self.ip()
718 ##Just a quick hack/check to ensure we don't regenerate in the common case.
719 ##As ONOS is usually the first test container that is started
720 if cluster is False:
721 if ip != self.CLUSTER_CFG_IP or not os.access(self.cluster_cfg, os.F_OK):
722 print('Regenerating ONOS cluster cfg for ip %s' %ip)
723 self.generate_cluster_cfg(ip)
724 self.kill()
725 self.remove_container(self.name, force=True)
726 print('Restarting ONOS container %s' %self.name)
727 self.start(ports = self.ports, environment = self.env,
728 host_config = self.host_config, volumes = self.volumes, tty = True)
729 print('Waiting for ONOS to boot')
730 time.sleep(boot_delay)
731 self.wait_for_onos_start(self.ip())
732 self.running = True
733 else:
734 self.running = False
735 else:
736 self.running = True
737 if self.running:
738 self.ipaddr = self.ip()
739 if cluster is False:
740 self.install_cord_apps(self.ipaddr)
A R Karthick19aaf5c2016-11-09 17:47:57 -0800741
A.R Karthickc4e474d2016-12-12 15:24:57 -0800742 @classmethod
743 def get_quagga_config(cls, instance = 0):
A R Karthickaa54a1c2016-12-15 11:42:08 -0800744 quagga_config = copy.deepcopy(cls.QUAGGA_CONFIG)
A.R Karthickc4e474d2016-12-12 15:24:57 -0800745 if instance == 0:
746 return quagga_config
747 ip = quagga_config[0]['ip']
748 octets = ip.split('.')
A R Karthickaa54a1c2016-12-15 11:42:08 -0800749 octets[3] = str((int(octets[3]) + instance) & 255)
A.R Karthickc4e474d2016-12-12 15:24:57 -0800750 ip = '.'.join(octets)
751 quagga_config[0]['ip'] = ip
752 return quagga_config
753
754 @classmethod
755 def start_cluster_async(cls, onos_instances):
756 instances = filter(lambda o: o.running == False, onos_instances)
757 if not instances:
758 return
759 tpool = ThreadPool(len(instances), queue_size = 1, wait_timeout = 1)
760 for onos in instances:
761 tpool.addTask(onos.start_async)
762 tpool.cleanUpThreads()
763
764 def start_async(self):
765 print('Starting ONOS container %s' %self.name)
766 self.start(ports = self.ports, environment = self.env,
767 host_config = self.host_config, volumes = self.volumes, tty = True)
768 time.sleep(3)
A R Karthick2b93d6a2016-09-06 15:19:09 -0700769 self.ipaddr = self.ip()
A.R Karthickc4e474d2016-12-12 15:24:57 -0800770 print('Waiting for ONOS container %s to start' %self.name)
771 self.wait_for_onos_start(self.ipaddr)
772 self.running = True
773 print('ONOS container %s started' %self.name)
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700774
A R Karthick2b93d6a2016-09-06 15:19:09 -0700775 @classmethod
A R Karthick19aaf5c2016-11-09 17:47:57 -0800776 def wait_for_onos_start(cls, ip, tries = 30):
A R Karthick973010f2017-02-06 16:41:51 -0800777 onos_log = OnosLog(host = ip, log_file = Onos.guest_log_file)
A R Karthick19aaf5c2016-11-09 17:47:57 -0800778 num_tries = 0
779 started = None
780 while not started and num_tries < tries:
781 time.sleep(3)
782 started = onos_log.search_log_pattern('ApplicationManager .* Started')
783 num_tries += 1
784
A R Karthick19aaf5c2016-11-09 17:47:57 -0800785 if not started:
786 print('ONOS did not start')
787 else:
788 print('ONOS started')
789 return started
790
791 @classmethod
A R Karthick2b93d6a2016-09-06 15:19:09 -0700792 def setup_cluster_deprecated(cls, onos_instances, image_name = None):
793 if not onos_instances or len(onos_instances) < 2:
794 return
795 ips = []
796 if image_name is not None:
797 ips = Container.ips(image_name)
798 else:
799 for onos in onos_instances:
800 ips.append(onos.ipaddr)
801 Onos.cluster_instances = onos_instances
802 Onos.cluster_mode = True
803 ##regenerate the cluster json with the 3 instance ips before restarting them back
804 print('Generating cluster cfg for ONOS instances with ips %s' %ips)
805 Onos.generate_cluster_cfg(ips)
806 for onos in onos_instances:
807 onos.kill()
808 onos.remove_container(onos.name, force=True)
809 print('Restarting ONOS container %s for forming cluster' %onos.name)
810 onos.start(ports = onos.ports, environment = onos.env,
811 host_config = onos.host_config, volumes = onos.volumes, tty = True)
812 print('Waiting %d seconds for ONOS %s to boot' %(onos.boot_delay, onos.name))
813 time.sleep(onos.boot_delay)
814 onos.ipaddr = onos.ip()
815 onos.install_cord_apps(onos.ipaddr)
816
817 @classmethod
818 def setup_cluster(cls, onos_instances, image_name = None):
819 if not onos_instances or len(onos_instances) < 2:
820 return
821 ips = []
822 if image_name is not None:
823 ips = Container.ips(image_name)
824 else:
825 for onos in onos_instances:
826 ips.append(onos.ipaddr)
827 Onos.cluster_instances = onos_instances
828 Onos.cluster_mode = True
829 ##regenerate the cluster json with the 3 instance ips before restarting them back
830 print('Forming cluster for ONOS instances with ips %s' %ips)
831 Onos.form_cluster(ips)
832 ##wait for the cluster to be formed
833 print('Waiting for the cluster to be formed')
834 time.sleep(60)
835 for onos in onos_instances:
836 onos.install_cord_apps(onos.ipaddr)
837
838 @classmethod
A R Karthicke2c24bd2016-10-07 14:51:38 -0700839 def add_cluster(cls, count = 1, network_cfg = None):
840 if not cls.cluster_instances or Onos.cluster_mode is False:
841 return
842 for i in range(count):
843 name = '{}-{}'.format(Onos.NAME, len(cls.cluster_instances)+1)
844 onos = cls(name = name, image = Onos.IMAGE, tag = Onos.TAG, prefix = Container.IMAGE_PREFIX,
845 cluster = True, network_cfg = network_cfg)
846 cls.cluster_instances.append(onos)
847
848 cls.setup_cluster(cls.cluster_instances)
849
850 @classmethod
A.R Karthick2560f042016-11-30 14:38:52 -0800851 def restart_cluster(cls, network_cfg = None, timeout = 10, setup = False):
A R Karthick2b93d6a2016-09-06 15:19:09 -0700852 if cls.cluster_mode is False:
853 return
854 if not cls.cluster_instances:
855 return
856
857 if network_cfg is not None:
858 json_data = json.dumps(network_cfg, indent=4)
859 with open('{}/network-cfg.json'.format(cls.host_config_dir), 'w') as f:
860 f.write(json_data)
861
A.R Karthick2560f042016-11-30 14:38:52 -0800862 cls.cleanup_cluster()
863 if timeout > 0:
864 time.sleep(timeout)
865
A R Karthickaa54a1c2016-12-15 11:42:08 -0800866 #start the instances asynchronously
867 cls.start_cluster_async(cls.cluster_instances)
868 time.sleep(5)
A.R Karthick2560f042016-11-30 14:38:52 -0800869 ##form the cluster as appropriate
870 if setup is True:
871 cls.setup_cluster(cls.cluster_instances)
A R Karthickaa54a1c2016-12-15 11:42:08 -0800872 else:
873 for onos in cls.cluster_instances:
874 onos.install_cord_apps(onos.ipaddr)
A R Karthick2b93d6a2016-09-06 15:19:09 -0700875
876 @classmethod
877 def cluster_ips(cls):
878 if cls.cluster_mode is False:
879 return []
880 if not cls.cluster_instances:
881 return []
882 ips = [ onos.ipaddr for onos in cls.cluster_instances ]
883 return ips
884
885 @classmethod
886 def cleanup_cluster(cls):
887 if cls.cluster_mode is False:
888 return
889 if not cls.cluster_instances:
890 return
891 for onos in cls.cluster_instances:
892 if onos.exists():
893 onos.kill()
A R Karthickaa54a1c2016-12-15 11:42:08 -0800894 onos.running = False
A R Karthick2b93d6a2016-09-06 15:19:09 -0700895 onos.remove_container(onos.name, force=True)
A R Karthickd44cea12016-07-20 12:16:41 -0700896
A.R Karthick95d044e2016-06-10 18:44:36 -0700897 @classmethod
A R Karthickde6b9dc2016-11-29 17:46:16 -0800898 def restart_node(cls, node = None, network_cfg = None, timeout = 10):
A R Karthick889d9652016-10-03 14:13:45 -0700899 if node is None:
900 cls(restart = True, network_cfg = network_cfg, image = cls.IMAGE, tag = cls.TAG)
901 else:
902 #Restarts a node in the cluster
903 valid_node = filter(lambda onos: node in [ onos.ipaddr, onos.name ], cls.cluster_instances)
904 if valid_node:
905 onos = valid_node.pop()
906 if onos.exists():
907 onos.kill()
908 onos.remove_container(onos.name, force=True)
A R Karthickde6b9dc2016-11-29 17:46:16 -0800909 if timeout > 0:
910 time.sleep(timeout)
A R Karthick889d9652016-10-03 14:13:45 -0700911 print('Restarting ONOS container %s' %onos.name)
912 onos.start(ports = onos.ports, environment = onos.env,
913 host_config = onos.host_config, volumes = onos.volumes, tty = True)
A R Karthick889d9652016-10-03 14:13:45 -0700914 onos.ipaddr = onos.ip()
A.R Karthick2560f042016-11-30 14:38:52 -0800915 onos.wait_for_onos_start(onos.ipaddr)
916 onos.install_cord_apps(onos.ipaddr)
A R Karthick889d9652016-10-03 14:13:45 -0700917
918 @classmethod
A R Karthickeaf1c4e2016-07-19 12:22:35 -0700919 def install_cord_apps(cls, onos_ip = None):
A.R Karthick95d044e2016-06-10 18:44:36 -0700920 for app, version in cls.onos_cord_apps:
921 app_file = '{}/{}-{}.oar'.format(cls.cord_apps_dir, app, version)
A R Karthickeaf1c4e2016-07-19 12:22:35 -0700922 ok, code = OnosCtrl.install_app(app_file, onos_ip = onos_ip)
A.R Karthick95d044e2016-06-10 18:44:36 -0700923 ##app already installed (conflicts)
924 if code in [ 409 ]:
925 ok = True
926 print('ONOS app %s, version %s %s' %(app, version, 'installed' if ok else 'failed to install'))
927 time.sleep(2)
928
A.R Karthick1700e0e2016-10-06 18:16:57 -0700929class OnosStopWrapper(Container):
930 def __init__(self, name):
931 super(OnosStopWrapper, self).__init__(name, Onos.IMAGE, tag = Onos.TAG, prefix = Container.IMAGE_PREFIX)
932 if self.exists():
933 self.kill()
A R Karthickaa54a1c2016-12-15 11:42:08 -0800934 self.running = False
A.R Karthick1700e0e2016-10-06 18:16:57 -0700935 else:
936 if Onos.cluster_mode is True:
937 valid_node = filter(lambda onos: name in [ onos.ipaddr, onos.name ], Onos.cluster_instances)
938 if valid_node:
939 onos = valid_node.pop()
940 if onos.exists():
941 onos.kill()
A R Karthickaa54a1c2016-12-15 11:42:08 -0800942 onos.running = False
A.R Karthick1700e0e2016-10-06 18:16:57 -0700943
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700944class Radius(Container):
945 ports = [ 1812, 1813 ]
A R Karthick41adfce2016-06-10 09:51:25 -0700946 env = {'TIMEZONE':'America/Los_Angeles',
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700947 'DEBUG': 'true', 'cert_password':'whatever', 'primary_shared_secret':'radius_password'
948 }
Chetan Gaonker7f4bf742016-05-04 15:56:08 -0700949 host_db_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), '..', 'setup/radius-config/db')
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700950 guest_db_dir = os.path.join(os.path.sep, 'opt', 'db')
Chetan Gaonker7f4bf742016-05-04 15:56:08 -0700951 host_config_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), '..', 'setup/radius-config/freeradius')
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700952 guest_config_dir = os.path.join(os.path.sep, 'etc', 'freeradius')
Chetan Gaonker7f4bf742016-05-04 15:56:08 -0700953 start_command = os.path.join(guest_config_dir, 'start-radius.py')
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700954 host_guest_map = ( (host_db_dir, guest_db_dir),
955 (host_config_dir, guest_config_dir)
956 )
A R Karthickf7a613b2017-02-24 09:36:44 -0800957 IMAGE = 'cordtest/radius'
Chetan Gaonker503032a2016-05-12 12:06:29 -0700958 NAME = 'cord-radius'
959
A R Karthick07608ef2016-08-23 16:51:19 -0700960 def __init__(self, name = NAME, image = IMAGE, prefix = '', tag = 'candidate',
A R Karthick85eb1862017-01-23 16:10:57 -0800961 boot_delay = 10, restart = False, update = False, network = None):
A R Karthick07608ef2016-08-23 16:51:19 -0700962 super(Radius, self).__init__(name, image, prefix = prefix, tag = tag, command = self.start_command)
Chetan Gaonker503032a2016-05-12 12:06:29 -0700963 if update is True or not self.img_exists():
A R Karthick07608ef2016-08-23 16:51:19 -0700964 self.build_image(self.image_name)
Chetan Gaonker7f4bf742016-05-04 15:56:08 -0700965 if restart is True and self.exists():
966 self.kill()
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700967 if not self.exists():
968 self.remove_container(name, force=True)
969 host_config = self.create_host_config(port_list = self.ports,
970 host_guest_map = self.host_guest_map)
971 volumes = []
972 for _,g in self.host_guest_map:
973 volumes.append(g)
A R Karthick41adfce2016-06-10 09:51:25 -0700974 self.start(ports = self.ports, environment = self.env,
975 volumes = volumes,
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700976 host_config = host_config, tty = True)
A R Karthick85eb1862017-01-23 16:10:57 -0800977 if network is not None:
978 Container.connect_to_network(self.name, network)
Chetan Gaonker7f4bf742016-05-04 15:56:08 -0700979 time.sleep(boot_delay)
980
981 @classmethod
982 def build_image(cls, image):
983 print('Building Radius image %s' %image)
984 dockerfile = '''
985FROM hbouvier/docker-radius
986MAINTAINER chetan@ciena.com
987LABEL RUN docker pull hbouvier/docker-radius
988LABEL RUN docker run -it --name cord-radius hbouvier/docker-radius
A R Karthickc762df42016-05-25 10:09:21 -0700989RUN apt-get update && \
990 apt-get -y install python python-pexpect strace
Chetan Gaonker7f4bf742016-05-04 15:56:08 -0700991WORKDIR /root
992CMD ["/etc/freeradius/start-radius.py"]
993'''
994 super(Radius, cls).build_image(dockerfile, image)
995 print('Done building image %s' %image)
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700996
Chetan Gaonker6cf6e472016-04-26 14:41:51 -0700997class Quagga(Container):
A R Karthickaa54a1c2016-12-15 11:42:08 -0800998 QUAGGA_CONFIG = ( { 'bridge' : 'quagga-br', 'ip': '10.10.0.3', 'mask' : 16 },
Chetan Gaonker8e25e1b2016-05-02 13:42:21 -0700999 { 'bridge' : 'quagga-br', 'ip': '192.168.10.3', 'mask': 16 },
1000 )
Chetan Gaonker6cf6e472016-04-26 14:41:51 -07001001 ports = [ 179, 2601, 2602, 2603, 2604, 2605, 2606 ]
1002 host_quagga_config = os.path.join(os.path.dirname(os.path.realpath(__file__)), '..', 'setup/quagga-config')
1003 guest_quagga_config = '/root/config'
1004 quagga_config_file = os.path.join(guest_quagga_config, 'testrib.conf')
1005 host_guest_map = ( (host_quagga_config, guest_quagga_config), )
A R Karthickf7a613b2017-02-24 09:36:44 -08001006 IMAGE = 'cordtest/quagga'
Chetan Gaonker503032a2016-05-12 12:06:29 -07001007 NAME = 'cord-quagga'
1008
A R Karthick07608ef2016-08-23 16:51:19 -07001009 def __init__(self, name = NAME, image = IMAGE, prefix = '', tag = 'candidate',
A R Karthick85eb1862017-01-23 16:10:57 -08001010 boot_delay = 15, restart = False, config_file = quagga_config_file, update = False,
1011 network = None):
A R Karthickaa54a1c2016-12-15 11:42:08 -08001012 super(Quagga, self).__init__(name, image, prefix = prefix, tag = tag, quagga_config = self.QUAGGA_CONFIG)
Chetan Gaonker503032a2016-05-12 12:06:29 -07001013 if update is True or not self.img_exists():
A R Karthick07608ef2016-08-23 16:51:19 -07001014 self.build_image(self.image_name)
Chetan Gaonker6cf6e472016-04-26 14:41:51 -07001015 if restart is True and self.exists():
1016 self.kill()
1017 if not self.exists():
1018 self.remove_container(name, force=True)
A R Karthick41adfce2016-06-10 09:51:25 -07001019 host_config = self.create_host_config(port_list = self.ports,
1020 host_guest_map = self.host_guest_map,
Chetan Gaonker6cf6e472016-04-26 14:41:51 -07001021 privileged = True)
1022 volumes = []
1023 for _,g in self.host_guest_map:
1024 volumes.append(g)
1025 self.start(ports = self.ports,
A R Karthick41adfce2016-06-10 09:51:25 -07001026 host_config = host_config,
Chetan Gaonker6cf6e472016-04-26 14:41:51 -07001027 volumes = volumes, tty = True)
A R Karthick85eb1862017-01-23 16:10:57 -08001028 if network is not None:
1029 Container.connect_to_network(self.name, network)
Chetan Gaonker6cf6e472016-04-26 14:41:51 -07001030 print('Starting Quagga on container %s' %self.name)
1031 self.execute('{0}/start.sh {1}'.format(self.guest_quagga_config, config_file))
1032 time.sleep(boot_delay)
1033
1034 @classmethod
1035 def build_image(cls, image):
A R Karthickaa54a1c2016-12-15 11:42:08 -08001036 onos_quagga_ip = Onos.QUAGGA_CONFIG[0]['ip']
Chetan Gaonker6cf6e472016-04-26 14:41:51 -07001037 print('Building Quagga image %s' %image)
1038 dockerfile = '''
A R Karthick41adfce2016-06-10 09:51:25 -07001039FROM ubuntu:14.04
1040MAINTAINER chetan@ciena.com
Chetan Gaonker6cf6e472016-04-26 14:41:51 -07001041WORKDIR /root
1042RUN useradd -M quagga
1043RUN mkdir /var/log/quagga && chown quagga:quagga /var/log/quagga
1044RUN mkdir /var/run/quagga && chown quagga:quagga /var/run/quagga
A R Karthick973ea692016-10-17 12:23:02 -07001045RUN apt-get update && apt-get install -qy git autoconf libtool gawk make telnet libreadline6-dev pkg-config protobuf-c-compiler
ChetanGaonkerb5b46c62016-08-16 12:02:53 -07001046RUN git clone git://git.savannah.nongnu.org/quagga.git quagga && \
A R Karthick8f69c2c2016-10-21 11:43:26 -07001047(cd quagga && git checkout quagga-1.0.20160315 && ./bootstrap.sh && \
Chetan Gaonker6cf6e472016-04-26 14:41:51 -07001048sed -i -r 's,htonl.*?\(INADDR_LOOPBACK\),inet_addr\("{0}"\),g' zebra/zebra_fpm.c && \
1049./configure --enable-fpm --disable-doc --localstatedir=/var/run/quagga && make && make install)
1050RUN ldconfig
1051'''.format(onos_quagga_ip)
1052 super(Quagga, cls).build_image(dockerfile, image)
1053 print('Done building image %s' %image)
A R Karthick81acbff2016-06-17 14:45:16 -07001054
A.R Karthick1700e0e2016-10-06 18:16:57 -07001055class QuaggaStopWrapper(Container):
1056 def __init__(self, name = Quagga.NAME, image = Quagga.IMAGE, tag = 'candidate'):
1057 super(QuaggaStopWrapper, self).__init__(name, image, prefix = Container.IMAGE_PREFIX, tag = tag)
1058 if self.exists():
1059 self.kill()
1060
1061
A R Karthick81acbff2016-06-17 14:45:16 -07001062def reinitContainerClients():
1063 docker_netns.dckr = Client()
1064 Container.dckr = Client()
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001065
1066class Xos(Container):
1067 setup_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), '..', 'setup')
1068 TAG = 'latest'
1069 PREFIX = ''
A R Karthicke3bde962016-09-27 15:06:35 -07001070 host_guest_map = None
1071 env = None
1072 ports = None
1073 volumes = None
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001074
A R Karthick6e80afd2016-10-10 16:03:12 -07001075 @classmethod
1076 def get_cmd(cls, img_name):
1077 cmd = cls.dckr.inspect_image(img_name)['Config']['Cmd']
1078 return ' '.join(cmd)
1079
A R Karthicke3bde962016-09-27 15:06:35 -07001080 def __init__(self, name, image, prefix = PREFIX, tag = TAG,
A R Karthick6e80afd2016-10-10 16:03:12 -07001081 boot_delay = 20, restart = False, network_cfg = None, update = False):
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001082 if restart is True:
1083 ##Find the right image to restart
1084 running_image = filter(lambda c: c['Names'][0] == '/{}'.format(name), self.dckr.containers())
1085 if running_image:
1086 image_name = running_image[0]['Image']
1087 try:
1088 image = image_name.split(':')[0]
1089 tag = image_name.split(':')[1]
1090 except: pass
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001091 super(Xos, self).__init__(name, image, prefix = prefix, tag = tag)
1092 if update is True or not self.img_exists():
1093 self.build_image(self.image_name)
A R Karthick6e80afd2016-10-10 16:03:12 -07001094 self.command = self.get_cmd(self.image_name).strip() or None
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001095 if restart is True and self.exists():
1096 self.kill()
1097 if not self.exists():
1098 self.remove_container(name, force=True)
A R Karthicke3bde962016-09-27 15:06:35 -07001099 host_config = self.create_host_config(port_list = self.ports,
1100 host_guest_map = self.host_guest_map,
1101 privileged = True)
1102 print('Starting XOS container %s' %self.name)
1103 self.start(ports = self.ports, environment = self.env, host_config = host_config,
1104 volumes = self.volumes, tty = True)
1105 print('Waiting %d seconds for XOS Base Container to boot' %(boot_delay))
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001106 time.sleep(boot_delay)
1107
1108 @classmethod
A R Karthicke3bde962016-09-27 15:06:35 -07001109 def build_image(cls, image, dockerfile_path, image_target = 'build'):
1110 cmd = 'cd {} && make {}'.format(dockerfile_path, image_target)
1111 print('Building XOS %s' %image)
1112 res = os.system(cmd)
1113 print('Done building image %s. Image build %s' %(image, 'successful' if res == 0 else 'failed'))
1114 return res
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001115
A R Karthicke3bde962016-09-27 15:06:35 -07001116class XosServer(Xos):
1117 ports = [8000,9998,9999]
1118 NAME = 'xos-server'
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001119 IMAGE = 'xosproject/xos'
A R Karthicke3bde962016-09-27 15:06:35 -07001120 BASE_IMAGE = 'xosproject/xos-base'
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001121 TAG = 'latest'
1122 PREFIX = ''
A R Karthicke3bde962016-09-27 15:06:35 -07001123 dockerfile_path = os.path.join(Xos.setup_dir, 'xos')
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001124
A R Karthicke3bde962016-09-27 15:06:35 -07001125 def __init__(self, name = NAME, image = IMAGE, prefix = PREFIX, tag = TAG,
A R Karthick6e80afd2016-10-10 16:03:12 -07001126 boot_delay = 10, restart = False, network_cfg = None, update = False):
A R Karthicke3bde962016-09-27 15:06:35 -07001127 Xos.__init__(self, name, image, prefix, tag, boot_delay, restart, network_cfg, update)
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001128
1129 @classmethod
A R Karthicke3bde962016-09-27 15:06:35 -07001130 def build_image(cls, image = IMAGE):
1131 ##build the base image and then build the server image
1132 Xos.build_image(cls.BASE_IMAGE, cls.dockerfile_path, image_target = 'base')
1133 Xos.build_image(image, cls.dockerfile_path)
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001134
A R Karthicke3bde962016-09-27 15:06:35 -07001135class XosSynchronizerOpenstack(Xos):
1136 ports = [2375,]
1137 dockerfile_path = os.path.join(Xos.setup_dir, 'synchronizer')
1138 NAME = 'xos-synchronizer'
1139 IMAGE = 'xosproject/xos-synchronizer-openstack'
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001140 TAG = 'latest'
1141 PREFIX = ''
A R Karthicke3bde962016-09-27 15:06:35 -07001142 host_guest_map = ( ('/usr/local/share/ca-certificates', '/usr/local/share/ca-certificates'),)
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001143
A R Karthicke3bde962016-09-27 15:06:35 -07001144 def __init__(self, name = NAME, image = IMAGE, prefix = PREFIX,
A R Karthick6e80afd2016-10-10 16:03:12 -07001145 tag = TAG, boot_delay = 20, restart = False, network_cfg = None, update = False):
A R Karthicke3bde962016-09-27 15:06:35 -07001146 Xos.__init__(self, name, image, prefix, tag, boot_delay, restart, network_cfg, update)
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001147
1148 @classmethod
A R Karthicke3bde962016-09-27 15:06:35 -07001149 def build_image(cls, image = IMAGE):
1150 XosServer.build_image()
1151 Xos.build_image(image, cls.dockerfile_path)
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001152
A R Karthicke3bde962016-09-27 15:06:35 -07001153class XosSynchronizerOnboarding(Xos):
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001154 NAME = 'xos-synchronizer-onboarding'
1155 IMAGE = 'xosproject/xos-synchronizer-onboarding'
1156 TAG = 'latest'
1157 PREFIX = ''
A R Karthicke3bde962016-09-27 15:06:35 -07001158 dockerfile_path = os.path.join(Xos.setup_dir, 'onboarding_synchronizer')
1159 host_guest_map = ( ('/usr/local/share/ca-certificates', '/usr/local/share/ca-certificates'),)
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001160
A R Karthicke3bde962016-09-27 15:06:35 -07001161 def __init__(self, name = NAME, image = IMAGE, prefix = PREFIX,
A R Karthick6e80afd2016-10-10 16:03:12 -07001162 tag = TAG, boot_delay = 10, restart = False, network_cfg = None, update = False):
A R Karthicke3bde962016-09-27 15:06:35 -07001163 Xos.__init__(self, name, image, prefix, tag, boot_delay, restart, network_cfg, update)
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001164
1165 @classmethod
A R Karthicke3bde962016-09-27 15:06:35 -07001166 def build_image(cls, image = IMAGE):
1167 XosSynchronizerOpenstack.build_image()
1168 Xos.build_image(image, cls.dockerfile_path)
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001169
A R Karthicke3bde962016-09-27 15:06:35 -07001170class XosSynchronizerOpenvpn(Xos):
1171 NAME = 'xos-synchronizer-openvpn'
1172 IMAGE = 'xosproject/xos-openvpn'
1173 TAG = 'latest'
1174 PREFIX = ''
1175 dockerfile_path = os.path.join(Xos.setup_dir, 'openvpn')
1176 host_guest_map = ( ('/usr/local/share/ca-certificates', '/usr/local/share/ca-certificates'),)
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001177
A R Karthicke3bde962016-09-27 15:06:35 -07001178 def __init__(self, name = NAME, image = IMAGE, prefix = PREFIX,
A R Karthick6e80afd2016-10-10 16:03:12 -07001179 tag = TAG, boot_delay = 10, restart = False, network_cfg = None, update = False):
A R Karthicke3bde962016-09-27 15:06:35 -07001180 Xos.__init__(self, name, image, prefix, tag, boot_delay, restart, network_cfg, update)
1181
1182 @classmethod
1183 def build_image(cls, image = IMAGE):
1184 XosSynchronizerOpenstack.build_image()
1185 Xos.build_image(image, cls.dockerfile_path)
1186
1187class XosPostgresql(Xos):
1188 ports = [5432,]
1189 NAME = 'xos-db-postgres'
1190 IMAGE = 'xosproject/xos-postgres'
1191 TAG = 'latest'
1192 PREFIX = ''
1193 volumes = ["/etc/postgresql", "/var/log/postgresql", "/var/lib/postgresql"]
1194 dockerfile_path = os.path.join(Xos.setup_dir, 'postgresql')
1195
1196 def __init__(self, name = NAME, image = IMAGE, prefix = PREFIX,
A R Karthick6e80afd2016-10-10 16:03:12 -07001197 tag = TAG, boot_delay = 10, restart = False, network_cfg = None, update = False):
A R Karthicke3bde962016-09-27 15:06:35 -07001198 Xos.__init__(self, name, image, prefix, tag, boot_delay, restart, network_cfg, update)
1199
1200 @classmethod
1201 def build_image(cls, image = IMAGE):
1202 Xos.build_image(image, cls.dockerfile_path)
1203
1204class XosSyndicateMs(Xos):
1205 ports = [8080,]
1206 env = None
1207 NAME = 'xos-syndicate-ms'
1208 IMAGE = 'xosproject/syndicate-ms'
1209 TAG = 'latest'
1210 PREFIX = ''
1211 dockerfile_path = os.path.join(Xos.setup_dir, 'syndicate-ms')
1212
1213 def __init__(self, name = NAME, image = IMAGE, prefix = '', tag = TAG,
A R Karthick6e80afd2016-10-10 16:03:12 -07001214 boot_delay = 10, restart = False, network_cfg = None, update = False):
A R Karthicke3bde962016-09-27 15:06:35 -07001215 Xos.__init__(self, name, image, prefix, tag, boot_delay, restart, network_cfg, update)
1216
1217 @classmethod
1218 def build_image(cls, image = IMAGE):
1219 Xos.build_image(image, cls.dockerfile_path)
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001220
ChetanGaonkerc220e0d2016-10-05 05:06:25 -07001221class XosSyncVtn(Xos):
1222 ports = [8080,]
1223 env = None
1224 NAME = 'xos-synchronizer-vtn'
1225 IMAGE = 'xosproject/xos-synchronizer-vtn'
1226 TAG = 'latest'
1227 PREFIX = ''
1228 dockerfile_path = os.path.join(Xos.setup_dir, 'synchronizer-vtn')
1229
1230 def __init__(self, name = NAME, image = IMAGE, prefix = '', tag = TAG,
A R Karthick6e80afd2016-10-10 16:03:12 -07001231 boot_delay = 10, restart = False, network_cfg = None, update = False):
ChetanGaonkerc220e0d2016-10-05 05:06:25 -07001232 Xos.__init__(self, name, image, prefix, tag, boot_delay, restart, network_cfg, update)
1233
1234 @classmethod
1235 def build_image(cls, image = IMAGE):
1236 Xos.build_image(image, cls.dockerfile_path)
1237
1238class XosSyncVtr(Xos):
1239 ports = [8080,]
1240 env = None
1241 NAME = 'xos-synchronizer-vtr'
1242 IMAGE = 'xosproject/xos-synchronizer-vtr'
1243 TAG = 'latest'
1244 PREFIX = ''
1245 dockerfile_path = os.path.join(Xos.setup_dir, 'synchronizer-vtr')
1246
1247 def __init__(self, name = NAME, image = IMAGE, prefix = '', tag = TAG,
A R Karthick6e80afd2016-10-10 16:03:12 -07001248 boot_delay = 10, restart = False, network_cfg = None, update = False):
ChetanGaonkerc220e0d2016-10-05 05:06:25 -07001249 Xos.__init__(self, name, image, prefix, tag, boot_delay, restart, network_cfg, update)
1250
1251 @classmethod
1252 def build_image(cls, image = IMAGE):
1253 Xos.build_image(image, cls.dockerfile_path)
1254
1255class XosSyncVsg(Xos):
1256 ports = [8080,]
1257 env = None
1258 NAME = 'xos-synchronizer-vsg'
1259 IMAGE = 'xosproject/xos-synchronizer-vsg'
1260 TAG = 'latest'
1261 PREFIX = ''
1262 dockerfile_path = os.path.join(Xos.setup_dir, 'synchronizer-vsg')
1263
1264 def __init__(self, name = NAME, image = IMAGE, prefix = '', tag = TAG,
A R Karthick6e80afd2016-10-10 16:03:12 -07001265 boot_delay = 10, restart = False, network_cfg = None, update = False):
ChetanGaonkerc220e0d2016-10-05 05:06:25 -07001266 Xos.__init__(self, name, image, prefix, tag, boot_delay, restart, network_cfg, update)
1267
1268 @classmethod
1269 def build_image(cls, image = IMAGE):
1270 Xos.build_image(image, cls.dockerfile_path)
1271
1272
1273class XosSyncOnos(Xos):
1274 ports = [8080,]
1275 env = None
1276 NAME = 'xos-synchronizer-onos'
1277 IMAGE = 'xosproject/xos-synchronizer-onos'
1278 TAG = 'latest'
1279 PREFIX = ''
1280 dockerfile_path = os.path.join(Xos.setup_dir, 'synchronizer-onos')
1281
1282 def __init__(self, name = NAME, image = IMAGE, prefix = '', tag = TAG,
A R Karthick6e80afd2016-10-10 16:03:12 -07001283 boot_delay = 30, restart = False, network_cfg = None, update = False):
ChetanGaonkerc220e0d2016-10-05 05:06:25 -07001284 Xos.__init__(self, name, image, prefix, tag, boot_delay, restart, network_cfg, update)
1285
1286 @classmethod
1287 def build_image(cls, image = IMAGE):
1288 Xos.build_image(image, cls.dockerfile_path)
1289
1290class XosSyncFabric(Xos):
1291 ports = [8080,]
1292 env = None
1293 NAME = 'xos-synchronizer-fabric'
1294 IMAGE = 'xosproject/xos-synchronizer-fabric'
1295 TAG = 'latest'
1296 PREFIX = ''
1297 dockerfile_path = os.path.join(Xos.setup_dir, 'synchronizer-fabric')
1298
1299 def __init__(self, name = NAME, image = IMAGE, prefix = '', tag = TAG,
A R Karthick6e80afd2016-10-10 16:03:12 -07001300 boot_delay = 30, restart = False, network_cfg = None, update = False):
ChetanGaonkerc220e0d2016-10-05 05:06:25 -07001301 Xos.__init__(self, name, image, prefix, tag, boot_delay, restart, network_cfg, update)
1302
1303 @classmethod
1304 def build_image(cls, image = IMAGE):
1305 Xos.build_image(image, cls.dockerfile_path)
A R Karthick19aaf5c2016-11-09 17:47:57 -08001306
1307if __name__ == '__main__':
1308 onos = Onos(boot_delay = 10, restart = True)