puppet-aodh/manifests/coordination.pp
Takashi Kajinami fb448c80b5 Refactor resource dependencies
This refactors resource dependencies to improve the following points.

 - Avoid unnecessary dependencies across services. For example aodh
   service does not require cinder db.

 - Restart only api service when config files like paste.ini, which
   are used only be api service is changed.

Change-Id: Ie9922c101e7981801c4c8c8753f0ce54ac8e5fe3
2024-01-31 01:07:57 +00:00

49 lines
1.4 KiB
Puppet

# == Class: aodh::coordination
#
# Setup and configure Aodh coordination settings.
#
# === Parameters
#
# [*backend_url*]
# (Optional) Coordination backend URL.
# Defaults to $facts['os_service_default']
#
# [*heartbeat_interval*]
# (Optional) Number of seconds between heartbeats for distributed
# coordination.
# Defaults to $facts['os_service_default']
#
# [*retry_backoff*]
# (Optional) Retry backoff factor when retrying to connect with coordination
# backend.
# Defaults to $facts['os_service_default']
#
# [*max_retry_interval*]
# (Optional) Maximum number of seconds between retry to join partitioning
# group
# Defaults to $facts['os_service_default']
#
class aodh::coordination (
$backend_url = $facts['os_service_default'],
$heartbeat_interval = $facts['os_service_default'],
$retry_backoff = $facts['os_service_default'],
$max_retry_interval = $facts['os_service_default'],
) {
include aodh::deps
oslo::coordination{ 'aodh_config':
backend_url => $backend_url
}
aodh_config {
'coordination/heartbeat_interval': value => $heartbeat_interval;
'coordination/retry_backoff': value => $retry_backoff;
'coordination/max_retry_interval': value => $max_retry_interval;
}
# all coordination settings should be applied and all packages should be
# installed before service startup
Oslo::Coordination['aodh_config'] -> Anchor['aodh::service::begin']
}