5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# File 'manifests/deps.pp', line 5
class glance::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 { 'glance::install::begin': }
-> Package<| tag == 'glance-package'|>
~> anchor { 'glance::install::end': }
-> anchor { 'glance::config::begin': }
-> Glance_api_config<||>
~> anchor { 'glance::config::end': }
-> anchor { 'glance::db::begin': }
-> anchor { 'glance::db::end': }
~> anchor { 'glance::dbsync::begin': }
-> anchor { 'glance::dbsync::end': }
~> anchor { 'glance::service::begin': }
~> Service<| tag == 'glance-service' |>
~> anchor { 'glance::service::end': }
# all db settings should be applied and all packages should be installed
# before dbsync starts
Oslo::Db<||> -> Anchor['glance::dbsync::begin']
# policy config should occur in the config block also.
Anchor['glance::config::begin']
-> Openstacklib::Policy<||>
~> Anchor['glance::config::end']
# On any uwsgi config change, we must restart Glance API.
Anchor['glance::config::begin']
-> Glance_api_uwsgi_config<||>
~> Anchor['glance::config::end']
# All other inifile providers need to be processed in the config block
Anchor['glance::config::begin'] -> Glance_api_paste_ini<||> ~> Anchor['glance::config::end']
Anchor['glance::config::begin'] -> Glance_cache_config<||> ~> Anchor['glance::config::end']
Anchor['glance::config::begin'] -> Glance_image_import_config<||> ~> Anchor['glance::config::end']
Anchor['glance::config::begin'] -> Glance_swift_config<||> ~> Anchor['glance::config::end']
Anchor['glance::config::begin'] -> Glance_rootwrap_config<||> ~> Anchor['glance::config::end']
# Support packages need to be installed in the install phase, but we don't
# put them in the chain above because we don't want any false dependencies
# between packages with the glance-package tag and the glance-support-package
# tag. Note: the package resources here will have a 'before' relationship on
# the glance::install::end anchor. The line between glance-support-package and
# glance-package should be whether or not glance services would need to be
# restarted if the package state was changed.
Anchor['glance::install::begin']
-> Package<| tag == 'glance-support-package'|>
-> Anchor['glance::install::end']
Anchor['glance::service::end'] -> Glance_image<||>
# Installation or config changes will always restart services.
Anchor['glance::install::end'] ~> Anchor['glance::service::begin']
Anchor['glance::config::end'] ~> Anchor['glance::service::begin']
}
|