scenario001: enable tempest plugin for Panko

Change-Id: I4ba20bffc37b45927c09e918b3118ebd948dd3ae
Depends-On: I1c2e7a228e2b56a03dc30faec7fee6025af5cf84
This commit is contained in:
Emilien Macchi 2017-01-24 20:59:28 -05:00
parent 12cb1cc873
commit cdb52a34df
2 changed files with 7 additions and 0 deletions

View File

@ -71,4 +71,5 @@ class { '::openstack_integration::tempest':
gnocchi => true, gnocchi => true,
ceilometer => true, ceilometer => true,
aodh => true, aodh => true,
panko => $enable_panko,
} }

View File

@ -32,6 +32,10 @@
# (optional) Define if Gnocchi needs to be tested. # (optional) Define if Gnocchi needs to be tested.
# Default to false. # Default to false.
# #
# [*panko*]
# (optional) Define if Panko needs to be tested.
# Default to false.
#
# [*heat*] # [*heat*]
# (optional) Define if Heat needs to be tested. # (optional) Define if Heat needs to be tested.
# Default to false. # Default to false.
@ -93,6 +97,7 @@ class openstack_integration::tempest (
$ec2api = false, $ec2api = false,
$glance = true, $glance = true,
$gnocchi = false, $gnocchi = false,
$panko = false,
$heat = false, $heat = false,
$horizon = false, $horizon = false,
$ironic = false, $ironic = false,
@ -161,6 +166,7 @@ class openstack_integration::tempest (
zaqar_available => $zaqar, zaqar_available => $zaqar,
mistral_available => $mistral, mistral_available => $mistral,
gnocchi_available => $gnocchi, gnocchi_available => $gnocchi,
panko_available => $panko,
ec2api_available => $ec2api, ec2api_available => $ec2api,
watcher_available => $watcher, watcher_available => $watcher,
public_network_name => 'public', public_network_name => 'public',