[CVP] Explicitly define tempest version, remove heat-tempest-plugin

Change-Id: I230fc74bea5b4552a2abe5cd0f073c9f23f19558
diff --git a/configure.sh b/configure.sh
index 5c8280d..a206be1 100755
--- a/configure.sh
+++ b/configure.sh
@@ -35,12 +35,14 @@
   export https_proxy=$PROXY
 fi
 #rally verify add-verifier-ext --source https://github.com/openstack/telemetry-tempest-plugin
-rally verify add-verifier-ext --version 0.1.0 --source https://github.com/openstack/heat-tempest-plugin
+#rally verify add-verifier-ext --version 0.1.0 --source https://github.com/openstack/heat-tempest-plugin
 unset https_proxy
 }
 
 tempest_configuration () {
   sub_name=`date "+%H_%M_%S"`
+  # For 2018.4.0 we will use Tempest 15.0.0
+  tempest_version='15.0.0'
   if [ -n "${OFFLINE}" ]; then
     rally verify create-verifier --name tempest_verifier_$sub_name --type tempest --source $TEMPEST_REPO --system-wide --version $tempest_version
     cd /var/lib/
@@ -53,7 +55,8 @@
   fi
   # supress tempest.conf display in console
   #rally verify configure-verifier --show
-  additional_tempest_plugins
+  # Plugins will not be used for Tempest 15.0.0
+  #additional_tempest_plugins
   pip install --force-reinstall python-cinderclient==3.2.0
 }