478f8208ad
This patch enables robust and complete testing of a compute scenario where RBD is used for Cinder and Nova. * Allow cinder.pp and nova.pp to configure RBD backend. * Switch scenario001 to run Cinder and Nova with RBD backend. * Update README with more documentation about Cinder & Nova backends. * Configure volume_clear option to 'none' so volumes are quickly deleted. * Enable rbd_default_features to 15 to increase ceph performances. * Increase compute build_interval in Tempest to 60s, useful for Bootfromvolume test where instance deletion can take time with RBD backend. Depends-On: I69a7d40e7d1847be06a843986ace4f0602272fe1 Depends-On: I7302b89da5a995e779ec349ab0c0f519c69a3a98 Depends-On: Ic410cb66e7620b6ca6acbea38360d8dd890000c9 Change-Id: I5c8d9cf2ff8fc361553b3eed73b697ad87170434
44 lines
1.3 KiB
Puppet
44 lines
1.3 KiB
Puppet
#
|
|
# Copyright 2015 Red Hat, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
include ::openstack_integration
|
|
include ::openstack_integration::rabbitmq
|
|
include ::openstack_integration::mysql
|
|
include ::openstack_integration::keystone
|
|
class { '::openstack_integration::glance':
|
|
backend => 'rbd',
|
|
}
|
|
include ::openstack_integration::neutron
|
|
class { '::openstack_integration::nova':
|
|
libvirt_rbd => true,
|
|
}
|
|
class { '::openstack_integration::cinder':
|
|
backend => 'rbd',
|
|
}
|
|
include ::openstack_integration::ceilometer
|
|
include ::openstack_integration::aodh
|
|
include ::openstack_integration::gnocchi
|
|
include ::openstack_integration::trove
|
|
include ::openstack_integration::ceph
|
|
include ::openstack_integration::provision
|
|
|
|
class { '::openstack_integration::tempest':
|
|
cinder => true,
|
|
ceilometer => true,
|
|
aodh => true,
|
|
trove => true,
|
|
}
|