01dbd1308c
This patch changes the default worker count from ::processorcount to the new ::os_workers fact. ::os_workers is based on the number of processors (currently cpu/4) but is capped at a maximum of 8 worker processors. This is a much more reasonable default in general and prevents excessive resource consumption on systems with a large number of CPUs. Change-Id: I00f93bc5030a794d16fae8dadef7f0396332d80f
43 lines
891 B
Ruby
43 lines
891 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'vitrage::db::postgresql' do
|
|
|
|
shared_examples_for 'vitrage::db::postgresql' do
|
|
let :req_params do
|
|
{ :password => 'pw' }
|
|
end
|
|
|
|
let :pre_condition do
|
|
'include postgresql::server'
|
|
end
|
|
|
|
context 'with only required parameters' do
|
|
let :params do
|
|
req_params
|
|
end
|
|
|
|
it { is_expected.to contain_postgresql__server__db('vitrage').with(
|
|
:user => 'vitrage',
|
|
:password => 'md58e3c14dceaf5be55c5982764df87003a'
|
|
)}
|
|
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 'vitrage::db::postgresql'
|
|
end
|
|
end
|
|
|
|
end
|