modify charm to support Boron Opendaylight

Modified this charm to supprot Broron version fot Opendaylight for
Mitaka integration and also SFC enablement.

Change-Id: Ic0d2949b139d6aa8c9989dfa45d76257f82bf979
This commit is contained in:
Narinder Gupta 2016-09-02 16:43:20 -05:00 committed by David Ames
parent c156c54dc0
commit 09ebd3fd68
3 changed files with 15 additions and 0 deletions

View File

@ -9,6 +9,7 @@ options:
openvswitch-odl: Open vSwitch OpenDayLight for OpenStack - Helium release
openvswitch-odl-lithium: Open vSwitch OpenDayLight for OpenStack - Lithium release
openvswitch-odl-beryllium: Open vSwitch OpenDayLight for OpenStack - Beryllium release
openvswitch-odl-boron: Open vSwitch OpenDayLight for OpenStack - Boron release
Only a single profile is supported at any one time.
install-url:

View File

@ -76,6 +76,16 @@ PROFILES = {
"odl-vpnservice-core"],
"port": 8080
},
"openvswitch-odl-boron": {
"feature:install": ["odl-netvirt-openstack",
"odl-dlux-all"],
"port": 8080
},
"openvswitch-odl-boron-sfc": {
"feature:install": ["odl-ovsdb-sfc-rest",
"odl-dlux-all"],
"port": 8080
},
}
PROFILES["default"] = PROFILES["openvswitch-odl"]

View File

@ -41,6 +41,10 @@ ODL_PROFILES = {
'location': 'AMULET_ODL_BE_LOCATION',
'profile': 'openvswitch-odl-beryllium'
},
'boron': {
'location': 'AMULET_ODL_BO_LOCATION',
'profile': 'openvswitch-odl-boron'
},
}