Revert "Disable Tacker installation during beaker tests"

The issue with dependencies for Ussuri release should be fixed now[1]

[1] https://review.rdoproject.org/r/#/c/29804/

The same was reverted by c544fe5ab2
in master.

This reverts commit fa3f51dffa.

Change-Id: Ic07847a9977194a8c9d74130ce1545fd8e49ee56
This commit is contained in:
Takashi Kajinami 2020-10-06 23:38:27 +09:00
parent b3014b2473
commit 7ba9167421
1 changed files with 21 additions and 22 deletions

View File

@ -36,23 +36,22 @@ describe 'basic tacker' do
warning('Tacker is not yet packaged on Ubuntu systems.') warning('Tacker is not yet packaged on Ubuntu systems.')
} }
'RedHat': { 'RedHat': {
warning('Tacker installation on CentOS8 is currently broken beause of a missing dependency') class { 'tacker::db':
# class { 'tacker::db': database_connection => 'mysql+pymysql://tacker:a_big_secret@127.0.0.1/tacker?charset=utf8',
# database_connection => 'mysql+pymysql://tacker:a_big_secret@127.0.0.1/tacker?charset=utf8', }
# } class { 'tacker::keystone::auth':
# class { 'tacker::keystone::auth': password => 'a_big_secret',
# password => 'a_big_secret', }
# } class { 'tacker::keystone::authtoken':
# class { 'tacker::keystone::authtoken': password => 'a_big_secret',
# password => 'a_big_secret', }
# } class { 'tacker::logging':
# class { 'tacker::logging': debug => true,
# debug => true, }
# } class { 'tacker':
# class { 'tacker': default_transport_url => 'rabbit://tacker:my_secret@127.0.0.1:5672/',
# default_transport_url => 'rabbit://tacker:my_secret@127.0.0.1:5672/', }
# } include tacker::server
# include tacker::server
include tacker::client include tacker::client
} }
default: { default: {
@ -66,11 +65,11 @@ describe 'basic tacker' do
apply_manifest(pp, :catch_changes => true) apply_manifest(pp, :catch_changes => true)
end end
# if os[:family].casecmp('RedHat') == 0 if os[:family].casecmp('RedHat') == 0
# describe port(9890) do describe port(9890) do
# it { is_expected.to be_listening } it { is_expected.to be_listening }
# end end
# end end
end end
end end