83dc8eadf7
1) Remove usage of verbose in Trove. 2) Rename Tempest parameter. 3) Rename Swift parameter. 4) Update parameters for Heat so we use 'password' auth_plugin. 5) Remove metering_secret, replaced by telemetry_secret. Change-Id: Id770a7b03323b72ba37317e48085d9c15f106bc1
130 lines
3.9 KiB
Puppet
130 lines
3.9 KiB
Puppet
# Configure the Tempest service
|
|
#
|
|
# [*aodh*]
|
|
# (optional) Define if Aodh needs to be tested.
|
|
# Default to false.
|
|
#
|
|
# [*ceilometer*]
|
|
# (optional) Define if Ceilometer needs to be tested.
|
|
# Default to false.
|
|
#
|
|
# [*cinder*]
|
|
# (optional) Define if Cinder needs to be tested.
|
|
# Default to false.
|
|
#
|
|
# [*glance*]
|
|
# (optional) Define if Glance needs to be tested.
|
|
# Default to true.
|
|
#
|
|
# [*heat*]
|
|
# (optional) Define if Heat needs to be tested.
|
|
# Default to false.
|
|
#
|
|
# [*horizon*]
|
|
# (optional) Define if Horizon needs to be tested.
|
|
# Default to false.
|
|
#
|
|
# [*ironic*]
|
|
# (optional) Define if Ironic needs to be tested.
|
|
# Default to false.
|
|
#
|
|
# [*mistral*]
|
|
# (optional) Define if Mistral needs to be tested.
|
|
# Default to false.
|
|
#
|
|
# [*neutron*]
|
|
# (optional) Define if Neutron needs to be tested.
|
|
# Default to true.
|
|
#
|
|
# [*nova*]
|
|
# (optional) Define if Nova needs to be tested.
|
|
# Default to true.
|
|
#
|
|
# [*sahara*]
|
|
# (optional) Define if Sahara needs to be tested.
|
|
# Default to false.
|
|
#
|
|
# [*swift*]
|
|
# (optional) Define if Swift needs to be tested.
|
|
# Default to false.
|
|
#
|
|
# [*trove*]
|
|
# (optional) Define if Trove needs to be tested.
|
|
# Default to false.
|
|
#
|
|
# [*zaqar*]
|
|
# (optional) Define if Zaqar needs to be tested.
|
|
# Default to false.
|
|
#
|
|
class openstack_integration::tempest (
|
|
$aodh = false,
|
|
$ceilometer = false,
|
|
$cinder = false,
|
|
$glance = true,
|
|
$heat = false,
|
|
$horizon = false,
|
|
$ironic = false,
|
|
$mistral = false,
|
|
$neutron = true,
|
|
$nova = true,
|
|
$sahara = false,
|
|
$swift = false,
|
|
$trove = false,
|
|
$zaqar = false,
|
|
) {
|
|
|
|
include ::openstack_integration::config
|
|
include ::openstack_integration::params
|
|
|
|
class { '::tempest':
|
|
debug => true,
|
|
use_stderr => false,
|
|
log_file => 'tempest.log',
|
|
tempest_clone_owner => $::id,
|
|
git_clone => false,
|
|
tempest_clone_path => '/tmp/openstack/tempest',
|
|
lock_path => '/tmp/openstack/tempest',
|
|
tempest_config_file => '/tmp/openstack/tempest/etc/tempest.conf',
|
|
configure_images => true,
|
|
configure_networks => true,
|
|
identity_uri => "${::openstack_integration::config::keystone_auth_uri}/v2.0",
|
|
identity_uri_v3 => "${::openstack_integration::config::keystone_auth_uri}/v3",
|
|
admin_username => 'admin',
|
|
admin_project_name => 'openstack',
|
|
admin_password => 'a_big_secret',
|
|
admin_domain_name => 'Default',
|
|
auth_version => 'v3',
|
|
image_name => 'cirros',
|
|
image_name_alt => 'cirros_alt',
|
|
cinder_available => $cinder,
|
|
glance_available => $glance,
|
|
horizon_available => $horizon,
|
|
nova_available => $nova,
|
|
neutron_available => $neutron,
|
|
ceilometer_available => $ceilometer,
|
|
aodh_available => $aodh,
|
|
trove_available => $trove,
|
|
sahara_available => $sahara,
|
|
heat_available => $heat,
|
|
swift_available => $swift,
|
|
ironic_available => $ironic,
|
|
zaqar_available => $zaqar,
|
|
mistral_available => $mistral,
|
|
public_network_name => 'public',
|
|
dashboard_url => $::openstack_integration::config::base_url,
|
|
flavor_ref => '42',
|
|
flavor_ref_alt => '84',
|
|
image_ssh_user => 'cirros',
|
|
image_alt_ssh_user => 'cirros',
|
|
img_file => 'cirros-0.3.4-x86_64-disk.img',
|
|
compute_build_interval => 10,
|
|
ca_certificates_file => $::openstack_integration::params::ca_bundle_cert_path,
|
|
manage_tests_packages => true,
|
|
# TODO(emilien) optimization by 1/ using Hiera to configure Glance image source
|
|
# and 2/ if running in the gate, use /home/jenkins/cache/files/ cirros image.
|
|
# img_dir => '/home/jenkins/cache/files',
|
|
img_dir => '/tmp/openstack/tempest',
|
|
}
|
|
|
|
}
|