Files
puppet-octavia/manifests/client.pp
Takashi Kajinami f1087e1992 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 octaviaclient
because the package provides some sub-commands.

Change-Id: I37c2447ea94085739702f65c0347843a6a6097d1
2023-11-20 01:20:54 +09:00

24 lines
456 B
Puppet

# == Class: octavia::client
#
# Installs the octavia python library.
#
# === Parameters
#
# [*ensure*]
# (Optional) Ensure state for package.
#
class octavia::client (
$ensure = 'present'
) {
include octavia::deps
include octavia::params
package { 'python-octaviaclient':
ensure => $ensure,
name => $::octavia::params::client_package_name,
tag => ['openstack', 'openstackclient'],
}
include openstacklib::openstackclient
}