Enable SSL in scenario001

Let's add SSL coverage to our tests. By enabling it in scenario001,
we can cover rabbitmq and horizon.

Change-Id: I785b7daf6ea8d6b9016e4438271c11844ea48ba0
This commit is contained in:
Javier Pena 2016-06-01 18:01:09 +02:00 committed by Alfredo Moralejo
parent 11b281071a
commit e531ea5fb9
3 changed files with 7 additions and 0 deletions

View File

@ -202,6 +202,7 @@ This is the current matrix of available tests:
| horizon | X | | |
| manila | X | | |
| nagios | X | | |
| SSL | X | | |
To run these tests:

View File

@ -216,6 +216,10 @@ else
$SUDO yum -y install openstack-packstack
fi
# Make sure the fqdn is associated to the IP in /etc/hosts
# Needed for Horizon SSL tests in Tempest
echo -e "\n127.0.0.1 $(facter fqdn)" | $SUDO tee -a /etc/hosts
# Generate configuration from selected scenario and run it
source ./tests/${SCENARIO}.sh
result=$?

View File

@ -24,6 +24,8 @@ $SUDO packstack --allinone \
--os-gnocchi-install=n \
--os-swift-install=n \
--os-manila-install=y \
--os-horizon-ssl=y \
--amqp-enable-ssl=y \
--glance-backend=file \
--provision-demo=y \
--provision-tempest=y \