Puppet Class: octavia::client
- Defined in:
- manifests/client.pp
Overview
Class: octavia::client
Installs the octavia python library.
Parameters
- ensure
-
(Optional) Ensure state for package.
10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'manifests/client.pp', line 10
class octavia::client (
$ensure = 'present'
) {
include octavia::deps
include octavia::params
package { 'python-octaviaclient':
ensure => $ensure,
name => $::octavia::params::client_package_name,
tag => 'openstack',
}
include openstacklib::openstackclient
}
|