Add ceilometor, aodh and networing-sfc plugins

Since Newton release, Tacker supports vnffg and alarm-monitor features,
which need these above projects to run.

Enable these projects in integration test env to support the related
functional tests.

Change-Id: I141128d8d1079d61820b48a5dde4af24a6ee4654
This commit is contained in:
gong yong sheng 2016-10-12 18:29:23 +08:00
parent d845a9c45e
commit 95169f5a3d

View File

@ -21,6 +21,16 @@
export PROJECTS="openstack/tacker-horizon $PROJECTS"
export PROJECTS="openstack/python-tackerclient $PROJECTS"
export DEVSTACK_LOCAL_CONFIG="enable_plugin tacker git://git.openstack.org/openstack/tacker"
case "$ZUUL_BRANCH" in
stable/liberty|stable/mitaka) break;;
*)
export DEVSTACK_LOCAL_CONFIG+=$'\n'"enable_plugin aodh git://git.openstack.org/openstack/aodh"
export PROJECTS="openstack/aodh $PROJECTS"
export DEVSTACK_LOCAL_CONFIG+=$'\n'"enable_plugin ceilometer https://git.openstack.org/openstack/ceilometer"
export PROJECTS="openstack/ceilometer $PROJECTS"
export DEVSTACK_LOCAL_CONFIG+=$'\n'"enable_plugin networking-sfc http://git.trystack.cn/openstack/networking-sfc"
export PROJECTS="openstack/networking-sfc $PROJECTS"
esac
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
fi