Add grenade plugin

Right now it is failing 3 smoke tests which are tempest screnario,

[1]. tempest.scenario.test_volume_boot_pattern.TestVolumeBootPattern \
     .test_volume_boot_pattern
[2]. tempest.scenario.test_volume_boot_pattern.TestVolumeBootPatternV2 \
    .test_volume_boot_pattern
[3]. tempest.scenario.test_network_basic_ops.TestNetworkBasicOps \
    .test_network_basic_ops

grenade plugin is able to complete stack.sh in base_target_run at the moment
these tests are failing because ODL does not support metadata.

Co-Authored-By: Manjeet Singh Bhatia <manjeet.s.bhatia@intel.com>
Change-Id: I2df289da8a30b200c62c7e80ef53f628a794b24a
Closes-bug: #1588019
This commit is contained in:
Isaku Yamahata
2016-08-09 11:10:35 -07:00
committed by Manjeet Singh Bhatia
parent 53ed988808
commit f1d1eb52f4
3 changed files with 16 additions and 0 deletions

0
devstack/upgrade/resources.sh Executable file
View File

16
devstack/upgrade/settings Normal file
View File

@@ -0,0 +1,16 @@
register_project_for_upgrade networking-odl
export TARGET_RUN_SMOKE=False
export BASE_RUN_SMOKE=False
for w in base target; do
devstack_localrc $w enable_plugin networking-odl http://github.com/openstack/networking-odl.git
devstack_localrc $w disable_service q-agt
devstack_localrc $w disable_service q-l3
devstack_localrc $w enable_service q-dhcp
devstack_localrc $w enable_service q-meta
devstack_localrc $w Q_PLUGIN=ml2
devstack_localrc $w ODL_CONFIG_BRIDGES=True
devstack_localrc $w Q_ML2_PLUGIN_MECHANISM_DRIVERS=opendaylight,openvswitch
devstack_localrc $w Q_ML2_PLUGIN_TYPE_DRIVERS=flat,vlan,gre,vxlan
done

0
devstack/upgrade/upgrade.sh Executable file
View File