Use new openstackclient tag

The new openstackclient tag was added so that we can get all resources
about openstack CLI more easily. This adds this tag to heatclient
because the package provides some sub-commands.

Change-Id: I4e24408d9c377d0b67d87efa07f07913ef997402
This commit is contained in:
Takashi Kajinami 2023-11-20 01:15:56 +09:00
parent 02599a4e70
commit 4d5c290463
2 changed files with 5 additions and 14 deletions

View File

@ -14,10 +14,12 @@ class heat::client (
include heat::deps
include heat::params
# NOTE(tkajinam): heat-package tag is used because heatclient is required
# by heat
package { 'python-heatclient':
ensure => $ensure,
name => $::heat::params::client_package_name,
tag => 'openstack',
tag => ['openstack', 'openstackclient', 'heat-package'],
}
include openstacklib::openstackclient

View File

@ -2,18 +2,7 @@ require 'spec_helper'
describe 'heat::client' do
let :params do
{}
end
let :default_params do
{ :package_ensure => 'present' }
end
shared_examples_for 'heat client' do
let :p do
default_params.merge(params)
end
it { is_expected.to contain_class('heat::deps') }
it { is_expected.to contain_class('heat::params') }
@ -21,8 +10,8 @@ describe 'heat::client' do
it 'installs heat client package' do
is_expected.to contain_package('python-heatclient').with(
:name => platform_params[:client_package_name],
:ensure => p[:package_ensure],
:tag => 'openstack'
:ensure => 'present',
:tag => ['openstack', 'openstackclient', 'heat-package']
)
end