Files
puppet-cloudkitty/manifests/deps.pp
Takashi Kajinami d93fcb505d Refactor resource dependencies
This refactors resource dependencies to avoid unnecessary dependencies
across services. For example zaqar service does not require cinder db.

Change-Id: I2757b36f027fa7a44b8d0533667956601962eac6
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
2025-09-06 23:49:53 +09:00

48 lines
2.0 KiB
Puppet

# == Class: cloudkitty::deps
#
# cloudkitty anchors and dependency management
#
class cloudkitty::deps {
# Setup anchors for install, config and service phases of the module. These
# anchors allow external modules to hook the begin and end of any of these
# phases. Package or service management can also be replaced by ensuring the
# package is absent or turning off service management and having the
# replacement depend on the appropriate anchors. When applicable, end tags
# should be notified so that subscribers can determine if installation,
# config or service state changed and act on that if needed.
anchor { 'cloudkitty::install::begin': }
-> Package<| tag == 'cloudkitty-package'|>
~> anchor { 'cloudkitty::install::end': }
-> anchor { 'cloudkitty::config::begin': }
-> Cloudkitty_config<||>
~> anchor { 'cloudkitty::config::end': }
-> anchor { 'cloudkitty::db::begin': }
-> anchor { 'cloudkitty::db::end': }
~> anchor { 'cloudkitty::dbsync::begin': }
-> anchor { 'cloudkitty::dbsync::end': }
~> anchor { 'cloudkitty::storageinit::begin': }
-> anchor { 'cloudkitty::storageinit::end': }
~> anchor { 'cloudkitty::service::begin': }
~> Service<| tag == 'cloudkitty-service' |>
~> anchor { 'cloudkitty::service::end': }
# paste-api.ini config should occur in the config block also.
Anchor['cloudkitty::config::begin']
-> Cloudkitty_api_paste_ini<||>
-> Anchor['cloudkitty::config::end']
# On any uwsgi config change, we must restart Cloudkitty API.
Anchor['cloudkitty::config::begin']
-> Cloudkitty_api_uwsgi_config<||>
~> Anchor['cloudkitty::config::end']
# Ensure files are modified in the config block
Anchor['cloudkitty::config::begin']
-> File<| tag == 'cloudkitty-yamls' |>
~> Anchor['cloudkitty::config::end']
# Installation or config changes will always restart services.
Anchor['cloudkitty::install::end'] ~> Anchor['cloudkitty::service::begin']
Anchor['cloudkitty::config::end'] ~> Anchor['cloudkitty::service::begin']
}