Disable Tacker installation

Currently Tacker installation with RDO Ussuri is broken. Let's skip
installation until the issue is fixed in RDO.

Change-Id: Ie7abcab1665c0d23f2fe920d3b57c7abc346c801
Related-Bug: #1920659
This commit is contained in:
Takashi Kajinami 2021-03-21 21:32:48 +09:00
parent 7ba9167421
commit 64d2f0e996
1 changed files with 21 additions and 20 deletions

View File

@ -36,23 +36,24 @@ describe 'basic tacker' do
warning('Tacker is not yet packaged on Ubuntu systems.')
}
'RedHat': {
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
warning('Tacker is currently disabled because of https://bugs.launchpad.net/puppet-tacker/+bug/1920659')
# 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: {
fail("Unsupported osfamily (${::osfamily})")
@ -66,9 +67,9 @@ describe 'basic tacker' do
end
if os[:family].casecmp('RedHat') == 0
describe port(9890) do
it { is_expected.to be_listening }
end
# describe port(9890) do
# it { is_expected.to be_listening }
# end
end
end