41c181975c
Depends-on: https://review.opendev.org/#/c/745246/ Change-Id: I53fc5ee6bc18d19d9108f73c8af8974eaff0bd43
92 lines
2.5 KiB
Ruby
92 lines
2.5 KiB
Ruby
require 'spec_helper_acceptance'
|
|
|
|
describe 'basic octavia' do
|
|
|
|
context 'default parameters' do
|
|
|
|
it 'should work with no errors' do
|
|
pp= <<-EOS
|
|
include openstack_integration
|
|
include openstack_integration::repos
|
|
include openstack_integration::apache
|
|
include openstack_integration::rabbitmq
|
|
include openstack_integration::mysql
|
|
include openstack_integration::keystone
|
|
if $::osfamily == 'RedHat' {
|
|
include openstack_integration::placement
|
|
include openstack_integration::nova
|
|
}
|
|
|
|
rabbitmq_user { 'octavia':
|
|
admin => true,
|
|
password => 'an_even_bigger_secret',
|
|
provider => 'rabbitmqctl',
|
|
require => Class['rabbitmq'],
|
|
}
|
|
|
|
rabbitmq_user_permissions { 'octavia@/':
|
|
configure_permission => '.*',
|
|
write_permission => '.*',
|
|
read_permission => '.*',
|
|
provider => 'rabbitmqctl',
|
|
require => Class['rabbitmq'],
|
|
}
|
|
|
|
class { 'octavia::db::mysql':
|
|
password => 'a_big_secret',
|
|
}
|
|
class { 'octavia::keystone::auth':
|
|
password => 'a_big_secret',
|
|
}
|
|
|
|
# Octavia is not packaged on Ubuntu platform.
|
|
if $::osfamily == 'RedHat' {
|
|
class { 'octavia::db':
|
|
database_connection => 'mysql+pymysql://octavia:a_big_secret@127.0.0.1/octavia?charset=utf8',
|
|
}
|
|
class { 'octavia::logging':
|
|
debug => true,
|
|
}
|
|
class { 'octavia':
|
|
default_transport_url => 'rabbit://octavia:an_even_bigger_secret@127.0.0.1:5672/',
|
|
}
|
|
class { 'octavia::keystone::authtoken':
|
|
password => 'octavia_pass',
|
|
}
|
|
class { 'octavia::api':
|
|
sync_db => true,
|
|
}
|
|
class { 'octavia::controller':
|
|
amp_flavor_id => '65',
|
|
}
|
|
class { 'octavia::worker':
|
|
}
|
|
class { 'octavia::health_manager':
|
|
heartbeat_key => 'abcdefghijkl',
|
|
}
|
|
class { 'octavia::housekeeping':
|
|
}
|
|
|
|
# We create Nova flavor on the same node where Nova runs
|
|
Keystone_user_role <||>-> Nova_flavor<||>
|
|
Keystone_user <||>-> Nova_flavor<||>
|
|
Keystone_endpoint <||>-> Nova_flavor<||>
|
|
|
|
}
|
|
EOS
|
|
|
|
# Run it twice and test for idempotency
|
|
apply_manifest(pp, :catch_failures => true)
|
|
apply_manifest(pp, :catch_changes => true)
|
|
end
|
|
|
|
if os[:family].casecmp('RedHat') == 0
|
|
describe port(9876) do
|
|
it { is_expected.to be_listening }
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
end
|