1f694ff1a4
In order to make easy orchestration on all OpenStack db-sync, add this tag so people can use this tag in composition layer. A use case it to set some orchestration to make sure MySQL Galera is ready before running any Exec with this tag. Change-Id: If6394558b373f85e61840f538a3e2e1105cfe98c Closes-Bug: #1755102
70 lines
2.1 KiB
Ruby
70 lines
2.1 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'ironic::db::sync' do
|
|
|
|
shared_examples_for 'ironic-dbsync' do
|
|
|
|
it 'runs ironic-manage db_sync' do
|
|
is_expected.to contain_exec('ironic-dbsync').with(
|
|
:command => 'ironic-dbsync --config-file /etc/ironic/ironic.conf ',
|
|
:path => '/usr/bin',
|
|
:user => 'ironic',
|
|
:refreshonly => 'true',
|
|
:try_sleep => 5,
|
|
:tries => 10,
|
|
:logoutput => 'on_failure',
|
|
:subscribe => ['Anchor[ironic::install::end]',
|
|
'Anchor[ironic::config::end]',
|
|
'Anchor[ironic::dbsync::begin]'],
|
|
:notify => 'Anchor[ironic::dbsync::end]',
|
|
:tag => 'openstack-db',
|
|
)
|
|
|
|
is_expected.to contain_file('/var/log/ironic/ironic-dbsync.log').with(
|
|
:ensure => 'present',
|
|
:owner => 'ironic',
|
|
:group => 'ironic',
|
|
)
|
|
end
|
|
|
|
describe "overriding extra_params" do
|
|
let :params do
|
|
{
|
|
:extra_params => '--config-file /etc/ironic/ironic_01.conf',
|
|
}
|
|
end
|
|
it { is_expected.to contain_exec('ironic-dbsync').with(
|
|
:command => 'ironic-dbsync --config-file /etc/ironic/ironic.conf --config-file /etc/ironic/ironic_01.conf',
|
|
:path => '/usr/bin',
|
|
:user => 'ironic',
|
|
:refreshonly => true,
|
|
:try_sleep => 5,
|
|
:tries => 10,
|
|
:logoutput => 'on_failure',
|
|
:subscribe => ['Anchor[ironic::install::end]',
|
|
'Anchor[ironic::config::end]',
|
|
'Anchor[ironic::dbsync::begin]'],
|
|
:notify => 'Anchor[ironic::dbsync::end]',
|
|
:tag => 'openstack-db',
|
|
)
|
|
}
|
|
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_behaves_like 'ironic-dbsync'
|
|
end
|
|
end
|
|
|
|
end
|