From 4a20f9a175fc4237ed16e535ab8250cc21cd0e8c Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Fri, 1 Mar 2013 07:23:38 -0500 Subject: [PATCH] add quantum_available flag to tempest this ensures that if we setup quantum, we are explicit about it in tempest. This is important so that nova tests which require quantum features have any idea if they should function. Change-Id: I5e6be9ff325676f25b2c391430dd66ff64a7a833 --- lib/tempest | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/tempest b/lib/tempest index d17b32d10a..9cc19ae0a8 100644 --- a/lib/tempest +++ b/lib/tempest @@ -238,6 +238,9 @@ function configure_tempest() { iniset $TEMPEST_CONF "compute-admin" password "$password" # DEPRECATED # network + if is_service_enabled quantum; then + iniset $TEMPEST_CONF network quantum_available "True" + fi iniset $TEMPEST_CONF network api_version 2.0 iniset $TEMPEST_CONF network tenant_networks_reachable "$tenant_networks_reachable" iniset $TEMPEST_CONF network public_network_id "$public_network_id"