2b9f2a0813
amphorav2 driver was introduced in stable/ussuri in Octavia, but some parameters to configure the backend server to enable persistence were still missing in puppet-octavia. Change-Id: I8a9bf0b2c17cd35bc09fbb0270c4ef4ed4e491bd
69 lines
2.0 KiB
Ruby
69 lines
2.0 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'octavia::db::sync' do
|
|
|
|
shared_examples_for 'octavia::db::sync' do
|
|
|
|
it { is_expected.to contain_class('octavia::deps') }
|
|
|
|
it 'runs octavia-manage db upgrade' do
|
|
is_expected.to contain_exec('octavia-db-sync').with(
|
|
:command => 'octavia-db-manage upgrade head ',
|
|
:user => 'octavia',
|
|
:path => '/usr/bin',
|
|
:refreshonly => 'true',
|
|
:try_sleep => 5,
|
|
:tries => 10,
|
|
:timeout => 300,
|
|
:logoutput => 'on_failure',
|
|
:subscribe => ['Anchor[octavia::install::end]',
|
|
'Anchor[octavia::config::end]',
|
|
'Anchor[octavia::dbsync::begin]'],
|
|
:notify => 'Anchor[octavia::dbsync::end]',
|
|
:tag => 'openstack-db',
|
|
)
|
|
end
|
|
|
|
describe "overriding params" do
|
|
let :params do
|
|
{
|
|
:extra_params => '--config-file /etc/octavia/octavia.conf',
|
|
:db_sync_timeout => 750,
|
|
}
|
|
end
|
|
|
|
it {
|
|
is_expected.to contain_exec('octavia-db-sync').with(
|
|
:command => 'octavia-db-manage upgrade head --config-file /etc/octavia/octavia.conf',
|
|
:user => 'octavia',
|
|
:path => '/usr/bin',
|
|
:refreshonly => 'true',
|
|
:try_sleep => 5,
|
|
:tries => 10,
|
|
:timeout => 750,
|
|
:logoutput => 'on_failure',
|
|
:subscribe => ['Anchor[octavia::install::end]',
|
|
'Anchor[octavia::config::end]',
|
|
'Anchor[octavia::dbsync::begin]'],
|
|
:notify => 'Anchor[octavia::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())
|
|
end
|
|
|
|
it_configures 'octavia::db::sync'
|
|
end
|
|
end
|
|
|
|
end
|