3cee14c87f
... because these are required as cache/coordination backend. Change-Id: I833d06ace65f97c68c3024ef7f283c8b09181939
30 lines
782 B
Ruby
30 lines
782 B
Ruby
require 'spec_helper_acceptance'
|
|
|
|
describe 'ceilometer with mysql' do
|
|
|
|
context 'default parameters' do
|
|
|
|
it 'should work with no errors' do
|
|
pp= <<-EOS
|
|
include openstack_integration
|
|
include openstack_integration::repos
|
|
include openstack_integration::apache
|
|
include openstack_integration::rabbitmq
|
|
include openstack_integration::mysql
|
|
include openstack_integration::memcached
|
|
include openstack_integration::redis
|
|
include openstack_integration::keystone
|
|
class { 'openstack_integration::ceilometer':
|
|
integration_enable => false,
|
|
}
|
|
EOS
|
|
|
|
|
|
# Run it twice and test for idempotency
|
|
apply_manifest(pp, :catch_failures => true)
|
|
apply_manifest(pp, :catch_changes => true)
|
|
end
|
|
|
|
end
|
|
end
|