- sudo apt-get install libffi-dev
- sudo apt-get install libxml2-dev libxslt1-dev
The Tempest source MUST be inside the Jumpgate source directory. Change directory into the Jumpgate source directory, then do
- sudo git clone https://github.com/openstack/tempest
Change directory into the Tempest source directory, then do
- sudo pip install -r requirements.txt
Change directory into the Jumpgate source directory.
- sudo cp etc/tempest.conf.sample etc/tempest.conf Now edit etc/tempest.conf
These do not need to be changed unless you configured Jumpgate ( /etc/jumpgate/jumpgate.conf ) to respond to a different IP address or port
uri = http://127.0.0.1:5000/v2.0/
uri_v3 = http://127.0.0.1:5000/v3/
The user information will be the same as used from the testing nova section from Installing Jumpgate.
Same value as OS_USERNAME, your SoftLayer username
username =
Same value as OS_PASSWORD, your SoftLayer API key
password =
Same value as OS_TENANT_ID, your SoftLayer account id
tenant_name =
The Admin user will have the same values as the user above.
admin_username =
admin_password =
admin_tenant_name =
The image refs need values. These values are UUIDs of public images in SoftLayer. You can use the values below or choose your own by using the SoftLayer CLI, 'sl image list --public'.
image_ref = 54f4ed9f-f7e6-4fe6-8b54-3a7faacd82b3
image_ref_alt = c27eb0ad-bddd-44c7-a37a-e3ddbbfed277
Some things have changed in the tempest.conf.sample from the Tempest project. In order for networking to work properly, change these values to EMPTY.
public_network_id = {$PUBLIC_NETWORK_ID}
public_router_id = {$PUBLIC_ROUTER_ID}
Like so
public_network_id =
public_router_id =
DO NOT CHANGE ANY OTHER VALUES
From the Jumpgate source directory, execute the following python run_tempest_tests.py You will see output in the terminal. Also a tempest.log file will be created in the tempest directory. If everything worked properly, you should see some new instances created in your SoftLayer account.
Tempest is still not working correctly as it should clean up its mess ( delete the test instances ) when it is done.