Revert "Disable Tacker installation"

This reverts commit 64d2f0e996.

Reason for revert:
The issue with RDO Ussuri has been fixed.

Change-Id: Id8f926cf72b531a074c5d83378bf98ebe7de2ab8
This commit is contained in:
Takashi Kajinami 2021-03-30 08:23:03 +00:00
parent 64d2f0e996
commit 98a9016e04
1 changed files with 20 additions and 21 deletions

View File

@ -36,24 +36,23 @@ 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 is currently disabled because of https://bugs.launchpad.net/puppet-tacker/+bug/1920659') 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: {
fail("Unsupported osfamily (${::osfamily})") fail("Unsupported osfamily (${::osfamily})")
@ -67,9 +66,9 @@ describe 'basic tacker' do
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