Revert "Disable Tacker installation during beaker tests"

The issue with dependencies should be fixed now[1]

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

This reverts commit 606e6ff904.

Change-Id: I2c1d82683584640eb7a0d2bfaf4ae6e500228248
This commit is contained in:
Takashi Kajinami 2020-09-29 07:30:10 +00:00
parent 606e6ff904
commit c544fe5ab2
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.')
}
'RedHat': {
warning('Tacker installation on CentOS8 is currently broken beause of a missing dependency')
# class { 'tacker::db':
# database_connection => 'mysql+pymysql://tacker:a_big_secret@127.0.0.1/tacker?charset=utf8',
# }
# class { 'tacker::keystone::auth':
# password => 'a_big_secret',
# }
# class { 'tacker::keystone::authtoken':
# password => 'a_big_secret',
# }
# class { 'tacker::logging':
# debug => true,
# }
# class { 'tacker':
# default_transport_url => 'rabbit://tacker:my_secret@127.0.0.1:5672/',
# }
# include tacker::server
class { 'tacker::db':
database_connection => 'mysql+pymysql://tacker:a_big_secret@127.0.0.1/tacker?charset=utf8',
}
class { 'tacker::keystone::auth':
password => 'a_big_secret',
}
class { 'tacker::keystone::authtoken':
password => 'a_big_secret',
}
class { 'tacker::logging':
debug => true,
}
class { 'tacker':
default_transport_url => 'rabbit://tacker:my_secret@127.0.0.1:5672/',
}
include tacker::server
include tacker::client
}
default: {
@ -66,11 +65,11 @@ describe 'basic tacker' do
apply_manifest(pp, :catch_changes => true)
end
# if os[:family].casecmp('RedHat') == 0
# describe port(9890) do
# it { is_expected.to be_listening }
# end
# end
if os[:family].casecmp('RedHat') == 0
describe port(9890) do
it { is_expected.to be_listening }
end
end
end
end