Merge "Update centos/redhat/rdo package names"

This commit is contained in:
Jenkins 2015-08-12 07:38:17 +00:00 committed by Gerrit Code Review
commit 411d553f94
6 changed files with 23 additions and 13 deletions

View File

@ -206,15 +206,15 @@ when 'fedora', 'rhel' # :pragma-foodcritic: ~FC024 - won't fix this
default['openstack']['orchestration']['user'] = 'heat'
default['openstack']['orchestration']['group'] = 'heat'
default['openstack']['orchestration']['platform'] = {
'heat_common_packages' => ['openstack-heat'],
'heat_common_packages' => ['openstack-heat-common'],
'heat_client_packages' => ['python-heatclient'],
'heat_api_packages' => ['python-heatclient'],
'heat_api_packages' => ['openstack-heat-api', 'python-heatclient'],
'heat_api_service' => 'openstack-heat-api',
'heat_api_cfn_packages' => ['python-heatclient'],
'heat_api_cfn_packages' => ['openstack-heat-api-cfn', 'python-heatclient'],
'heat_api_cfn_service' => 'openstack-heat-api-cfn',
'heat_api_cloudwatch_packages' => ['python-heatclient'],
'heat_api_cloudwatch_packages' => ['openstack-heat-api-cloudwatch', 'python-heatclient'],
'heat_api_cloudwatch_service' => 'openstack-heat-api-cloudwatch',
'heat_engine_packages' => [],
'heat_engine_packages' => ['openstack-heat-engine'],
'heat_engine_service' => 'openstack-heat-engine',
'heat_api_process_name' => 'heat-api',
'package_overrides' => ''

View File

@ -10,8 +10,10 @@ describe 'openstack-orchestration::api-cfn' do
include_context 'orchestration_stubs'
include_examples 'expect runs openstack orchestration common recipe'
it 'installs heat client packages' do
expect(chef_run).to upgrade_package 'python-heatclient'
it 'installs heat cfn packages' do
['openstack-heat-api-cfn', 'python-heatclient'].each do |pkg|
expect(chef_run).to upgrade_package pkg
end
end
it 'starts heat api-cfn on boot' do

View File

@ -10,8 +10,10 @@ describe 'openstack-orchestration::api-cloudwatch' do
include_context 'orchestration_stubs'
include_examples 'expect runs openstack orchestration common recipe'
it 'installs heat client packages' do
expect(chef_run).to upgrade_package 'python-heatclient'
it 'installs heat cloudwatch packages' do
['openstack-heat-api-cloudwatch', 'python-heatclient'].each do |pkg|
expect(chef_run).to upgrade_package pkg
end
end
it 'starts heat api-cloudwatch on boot' do

View File

@ -10,8 +10,10 @@ describe 'openstack-orchestration::api' do
include_context 'orchestration_stubs'
include_examples 'expect runs openstack orchestration common recipe'
it 'installs heat client packages' do
expect(chef_run).to upgrade_package 'python-heatclient'
it 'installs heat api packages' do
['openstack-heat-api', 'python-heatclient'].each do |pkg|
expect(chef_run).to upgrade_package pkg
end
end
it 'starts heat api on boot' do

View File

@ -10,6 +10,10 @@ describe 'openstack-orchestration::engine' do
include_context 'orchestration_stubs'
include_examples 'expect runs openstack orchestration common recipe'
it 'installs heat engine package' do
expect(chef_run).to upgrade_package 'openstack-heat-engine'
end
it 'starts heat engine on boot' do
expect(chef_run).to enable_service('openstack-heat-engine')
end

View File

@ -81,8 +81,8 @@ shared_examples 'expect runs openstack common logging recipe' do
end
shared_examples 'expect installs common heat package' do
it 'installs the openstack-heat package' do
expect(chef_run).to upgrade_package 'openstack-heat'
it 'installs the openstack-heat common package' do
expect(chef_run).to upgrade_package 'openstack-heat-common'
end
end