mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 17:31:31 +02:00
[DONE] - Restructured to activate or deactivate switching and routing app separately - Fixed to add or remove host when port is detected or vanished - Use openstack node service to get integration bridges and data IP [TODO] - Remove use of OpenstackPortInfo - Support installing flow rules for exising VMs - Call security group update method when port update triggered from OpenStack Change-Id: Ic0b2ac3f7ab07f0e20c97c6edfdd1928b9767baf
21 lines
590 B
Python
21 lines
590 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:org.apache.karaf.shell.console',
|
|
'//cli:onos-cli',
|
|
'//protocols/ovsdb/api:onos-protocols-ovsdb-api',
|
|
'//protocols/ovsdb/rfc:onos-protocols-ovsdb-rfc',
|
|
'//core/store/serializers:onos-core-serializers',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
)
|
|
|
|
onos_app (
|
|
title = 'OpenStack Node Bootstrap App',
|
|
category = 'Utility',
|
|
url = 'http://onosproject.org',
|
|
description = 'SONA Openstack Node Bootstrap Application.',
|
|
required_apps = [ 'org.onosproject.ovsdb-base', 'org.onosproject.drivers.ovsdb' ]
|
|
)
|