
This adds defined anchor points for external modules to hook into the software install, config and service dependency chain. This allows external modules to manage software installation (virtualenv, containers, etc) and service management (pacemaker) without needing rely on resources that may change or be renamed. Change-Id: Ibc184a50cf16b7048e0f7249f8894d8661bb76fe
41 lines
1.0 KiB
Ruby
41 lines
1.0 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'aodh::db::sync' do
|
|
|
|
shared_examples_for 'aodh-dbsync' do
|
|
|
|
it { is_expected.to contain_class('aodh::deps') }
|
|
|
|
it 'runs aodh-db-sync' do
|
|
is_expected.to contain_exec('aodh-db-sync').with(
|
|
:command => 'aodh-dbsync --config-file /etc/aodh/aodh.conf',
|
|
:path => '/usr/bin',
|
|
:refreshonly => 'true',
|
|
:user => 'aodh',
|
|
:logoutput => 'on_failure',
|
|
:subscribe => ['Anchor[aodh::install::end]',
|
|
'Anchor[aodh::config::end]',
|
|
'Anchor[aodh::dbsync::begin]'],
|
|
:notify => 'Anchor[aodh::dbsync::end]',
|
|
)
|
|
end
|
|
|
|
end
|
|
|
|
on_supported_os({
|
|
:supported_os => OSDefaults.get_supported_os
|
|
}).each do |os,facts|
|
|
context "on #{os}" do
|
|
let (:facts) do
|
|
facts.merge(OSDefaults.get_facts({
|
|
:os_workers => 8,
|
|
:concat_basedir => '/var/lib/puppet/concat'
|
|
}))
|
|
end
|
|
|
|
it_configures 'aodh-dbsync'
|
|
end
|
|
end
|
|
|
|
end
|