Puppet Class: watcher::placement_client

Defined in:
manifests/placement_client.pp

Overview

Class: watcher::placement_client

Configure the placement_client options

Parameters

api_version

(Optional) Microversion of placement API when using placement service. Defaults to $facts

interface

(Optional) Type of endpoint when using placement service. Defaults to $facts

region_name

(Optional) Region in Identify service catalog to use for communication with the OpenStack service. Defaults to $facts.

Parameters:

  • api_version (Any) (defaults to: $facts['os_service_default'])
  • interface (Any) (defaults to: $facts['os_service_default'])
  • region_name (Any) (defaults to: $facts['os_service_default'])


20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'manifests/placement_client.pp', line 20

class watcher::placement_client (
  $api_version = $facts['os_service_default'],
  $interface   = $facts['os_service_default'],
  $region_name = $facts['os_service_default'],
) {

  include watcher::deps
  include watcher::params

  watcher_config {
    'placement_client/api_version': value => $api_version;
    'placement_client/interface':   value => $interface;
    'placement_client/region_name': value => $region_name;
  }
}