Add cinder backup test

This patch adds cinder_backup_available as an option

Change-Id: I94d9b35e65fd0cf202c3b39f835821a0eebbac42
This commit is contained in:
Keith Schincke 2016-09-27 07:51:07 -04:00
parent 31097f2247
commit bcf7be9a5a
1 changed files with 6 additions and 2 deletions

View File

@ -100,6 +100,8 @@
# Defaults to undef
# [*cinder_available*]
# Defaults to true
# [*cinder_backup_available*]
# Defaults to false
# [*glance_available*]
# Defaults to true
# [*heat_available*]
@ -256,13 +258,13 @@ class tempest(
$compute_build_interval = undef,
# whitebox
$whitebox_db_uri = undef,
# testing features that are supported
# testing features that are supported
$resize_available = undef,
$change_password_available = undef,
$use_dynamic_credentials = undef,
# neutron config
$public_network_id = undef,
# Upstream has a bad defaul t - set it to empty string.
# Upstream has a bad default - set it to empty string.
$public_router_id = '',
# Sahara config
$sahara_plugins = undef,
@ -270,6 +272,7 @@ class tempest(
$db_flavor_ref = $::os_service_default,
# Service configuration
$cinder_available = true,
$cinder_backup_available = true,
$glance_available = true,
$heat_available = false,
$ceilometer_available = false,
@ -455,6 +458,7 @@ class tempest(
'dashboard/dashboard_url': value => $dashboard_url;
'database/db_flavor_ref': value => $db_flavor_ref;
'service_available/cinder': value => $cinder_available;
'volume_feature_enabled/backup': value => $cinder_backup_available;
'service_available/glance': value => $glance_available;
'service_available/heat': value => $heat_available;
'service_available/ceilometer': value => $ceilometer_available;