mirror of
https://github.com/opennetworkinglab/onos.git
synced 2026-05-04 11:51:43 +02:00
- Add CLI to purge flow rules installed by openstack apps. - Add CLI to reinstall flow rules for the existing virtual instances. - Remove CREATE_TIME from host annotation and revert to use host as a key of security group rule map. Change-Id: Ie647e5a8c86e86deb8ff050ecf280527ad218eda
30 lines
1.0 KiB
Python
30 lines
1.0 KiB
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//core/store/serializers:onos-core-serializers',
|
|
'//apps/openstackinterface/api:onos-apps-openstackinterface-api',
|
|
'//apps/openstacknetworking/api:onos-apps-openstacknetworking-api',
|
|
'//apps/openstacknode:onos-apps-openstacknode',
|
|
'//apps/dhcp/api:onos-apps-dhcp-api',
|
|
]
|
|
|
|
BUNDLES = [
|
|
'//apps/openstacknetworking/api:onos-apps-openstacknetworking-api',
|
|
'//apps/openstacknetworking/web:onos-apps-openstacknetworking-web',
|
|
'//apps/openstacknetworking/cli:onos-apps-openstacknetworking-cli',
|
|
'//apps/openstacknetworking/switching:onos-apps-openstacknetworking-switching',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
)
|
|
|
|
onos_app (
|
|
app_name = 'org.onosproject.openstackswitching',
|
|
title = 'OpenStack Switching App',
|
|
category = 'Utility',
|
|
url = 'http://onosproject.org',
|
|
description = 'OpenStack Switching application.',
|
|
included_bundles = BUNDLES,
|
|
required_apps = [ 'org.onosproject.openstackinterface', 'org.onosproject.openstacknode', 'org.onosproject.dhcp' ]
|
|
)
|