Puppet Class: designate::producer_task::periodic_exists

Defined in:
manifests/producer_task/periodic_exists.pp

Overview

Class designate::producer_task::periodic_exists

Configure periodic_exists producer task in designate-producer

Parameters

interval

(optional) Run interval in seconds. Defaults to $facts

per_page

(optional) Default amount of results returned per page. Defaults to $facts

Parameters:

  • interval (Any) (defaults to: $facts['os_service_default'])
  • per_page (Any) (defaults to: $facts['os_service_default'])


15
16
17
18
19
20
21
22
23
24
25
26
# File 'manifests/producer_task/periodic_exists.pp', line 15

class designate::producer_task::periodic_exists (
  $interval = $facts['os_service_default'],
  $per_page = $facts['os_service_default'],
) {

  include designate::deps

  designate_config {
    'producer_task:periodic_exists/interval': value => $interval;
    'producer_task:periodic_exists/per_page': value => $per_page;
  }
}