Merge "Use new openstackclient tag"

This commit is contained in:
Zuul 2023-11-20 18:27:43 +00:00 committed by Gerrit Code Review
commit 60d5294c9b
3 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@ class mistral::client(
package { 'python-mistralclient':
ensure => $package_ensure,
name => $::mistral::params::client_package,
tag => ['openstack', 'mistral-package'],
tag => ['openstack', 'openstackclient'],
}
include openstacklib::openstackclient

View File

@ -41,8 +41,8 @@ class mistral::deps {
# will have clients available to create resources. This tag handles the
# openstackclient but indirectly since the client is not available in
# all catalogs that don't need the client class (like many spec tests)
Package<| tag == 'openstack'|>
~> Anchor['mistral::service::end']
Package<| tag == 'openstackclient'|>
-> Anchor['mistral::service::end']
# Installation or config changes will always restart services.
Anchor['mistral::install::end'] ~> Anchor['mistral::service::begin']

View File

@ -11,7 +11,7 @@ describe 'mistral::client' do
is_expected.to contain_package('python-mistralclient').with(
:ensure => 'present',
:name => platform_params[:client_package],
:tag => ['openstack', 'mistral-package']
:tag => ['openstack', 'openstackclient']
)
end