Merge "Use new openstackclient tag"

This commit is contained in:
Zuul
2025-09-16 04:54:45 +00:00
committed by Gerrit Code Review
2 changed files with 4 additions and 2 deletions

View File

@@ -15,6 +15,8 @@ class vitrage::client (
package { 'python-vitrageclient':
ensure => $ensure,
name => $vitrage::params::client_package_name,
tag => 'openstack',
tag => ['openstack', 'openstackclient'],
}
include openstacklib::openstackclient
}

View File

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