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
32 lines
802 B
Ruby
32 lines
802 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'ironic::inspector::db::sync' do
|
|
|
|
shared_examples_for 'inspector-dbsync' do
|
|
|
|
it 'runs ironic-inspectror-db_sync' do
|
|
is_expected.to contain_exec('ironic-inspector-dbsync').with(
|
|
:command => 'ironic-inspector-dbsync --config-file /etc/ironic-inspector/inspector.conf upgrade',
|
|
:path => '/usr/bin',
|
|
:user => 'ironic-inspector',
|
|
:refreshonly => 'true',
|
|
:logoutput => 'on_failure',
|
|
: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())
|
|
end
|
|
it_behaves_like 'inspector-dbsync'
|
|
end
|
|
end
|
|
|
|
end
|