
This change introduces support for tunable parameters in the following sections. [producer_task:delayed_notify] [producer_task:periodic_exists] [producer_task:periodic_secondary_refresh] [producer_task:worker_periodic_recovery] [producer_task:zone_purge] Change-Id: Iad8849e77d4139e5473c66f699b5bee640e9dceb
27 lines
660 B
Puppet
27 lines
660 B
Puppet
# == Class designate::producer_task::periodic_exists
|
|
#
|
|
# Configure periodic_exists producer task in designate-producer
|
|
#
|
|
# == Parameters
|
|
#
|
|
# [*interval*]
|
|
# (optional) Run interval in seconds.
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*per_page*]
|
|
# (optional) Default amount of results returned per page.
|
|
# Defaults to $::os_service_default
|
|
#
|
|
class designate::producer_task::periodic_exists (
|
|
$interval = $::os_service_default,
|
|
$per_page = $::os_service_default,
|
|
) {
|
|
|
|
include designate::deps
|
|
|
|
designate_config {
|
|
'producer_task:periodic_exists/interval': value => $interval;
|
|
'producer_task:periodic_exists/per_page': value => $per_page;
|
|
}
|
|
}
|