From f9d5aacba1ce6a2fdc3f5ef71a82550cec3812ae Mon Sep 17 00:00:00 2001 From: Yifei Xue Date: Sat, 27 May 2017 14:11:17 +0800 Subject: Add opendaylight sfc support for compass installer JIRA: COMPASS-483 As odl sfc has been supported by other installers, we compass project has also support odl boron and tacker now. So we are going to support odl sfc+tacker in Danube release. This patch includes: 1. Add ovs-common and ovs-dkms 2. Install networking-sfc for neutron and odl 3. Configure odl sfc in neutron ml2 4. Add sfc related features in odl 5. Add sfc related repo making scripts 6. Add odl_sfc switch both in compass4nfv and compass-core Change-Id: If37a9e190c3095d771ffab61777a927b6d94ea9e Signed-off-by: Yifei Xue --- deploy/client.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'deploy/client.py') diff --git a/deploy/client.py b/deploy/client.py index e3591e51..50e236f0 100644 --- a/deploy/client.py +++ b/deploy/client.py @@ -249,6 +249,9 @@ opts = [ cfg.StrOpt('onos_sfc', help='onos_sfc enable flag', default='Disable'), + cfg.StrOpt('odl_sfc', + help='odl_sfc enable flag', + default='Disable'), ] CONF.register_cli_opts(opts) @@ -779,6 +782,8 @@ class CompassClient(object): if CONF.odl_l3_agent == "Enable" else "Disable" package_config['onos_sfc'] = "Enable" \ if CONF.onos_sfc == "Enable" else "Disable" + package_config['odl_sfc'] = "Enable" \ + if CONF.odl_sfc == "Enable" else "Disable" status, resp = self.client.update_cluster_config( cluster_id, package_config=package_config) -- cgit 1.2.3-korg