From 5c3a8aa8060e9b06a1babf21be40fba863c76093 Mon Sep 17 00:00:00 2001 From: Victor Pickard Date: Tue, 13 Feb 2018 18:28:31 -0500 Subject: [PATCH] Pin networking-l2gw client to specific version The Robot VM was installing latest, which actually points to version: networking-l2gw-2016.1.0 But, the version we need is: networking-l2gw-11.0.0 In Pike and Queens CSIT, this resulted in neutron l2gw commands not being available. This will resolve that issue, still working other issues for pike/queens. Change-Id: I6214b799cfafcf3635579a5918d631dd56955a61 Signed-off-by: Victor Pickard --- jjb/integration/integration-deploy-openstack-run-test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jjb/integration/integration-deploy-openstack-run-test.sh b/jjb/integration/integration-deploy-openstack-run-test.sh index 303fdc6aef..db2253e9ad 100644 --- a/jjb/integration/integration-deploy-openstack-run-test.sh +++ b/jjb/integration/integration-deploy-openstack-run-test.sh @@ -126,7 +126,7 @@ function install_openstack_clients_in_robot_vm() { if [ "${ENABLE_NETWORKING_L2GW}" == "yes" ]; then #networking-l2gw is not officially available in any release yet. Gettting the latest stable version. - $PYTHON -m pip install networking-l2gw + $PYTHON -m pip install networking-l2gw==11.0.0 fi } -- 2.36.6