
As Openstack projects continue to have longer database migration chains, the Puppet default timeout of 300 seconds for an execution is becoming too short a duration on some hardware, leading to timeouts. As projects continue to add more migration scripts without pruning the base, timeouts will continue to become more frequent unless this time can be expanded. Change-Id: I4a3941c5a21560c6246d22e89d4566dcdc95bfd6 Closes-Bug: #1904962
45 lines
1.1 KiB
Ruby
45 lines
1.1 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'zaqar::db::sync' do
|
|
|
|
shared_examples_for 'zaqar-dbsync' do
|
|
|
|
it { is_expected.to contain_class('zaqar::deps') }
|
|
|
|
it 'runs zaqar-db-sync' do
|
|
is_expected.to contain_exec('zaqar-db-sync').with(
|
|
:command => 'zaqar-sql-db-manage upgrade head',
|
|
:path => '/usr/bin',
|
|
:refreshonly => 'true',
|
|
:user => 'zaqar',
|
|
:try_sleep => 5,
|
|
:tries => 10,
|
|
:timeout => 300,
|
|
:logoutput => 'on_failure',
|
|
:subscribe => ['Anchor[zaqar::install::end]',
|
|
'Anchor[zaqar::config::end]',
|
|
'Anchor[zaqar::dbsync::begin]'],
|
|
:notify => 'Anchor[zaqar::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_configures 'zaqar-dbsync'
|
|
end
|
|
end
|
|
|
|
end
|