diff options
Diffstat (limited to 'manifests/profile/base/mistral.pp')
-rw-r--r-- | manifests/profile/base/mistral.pp | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/manifests/profile/base/mistral.pp b/manifests/profile/base/mistral.pp index 42507b9..0c41193 100644 --- a/manifests/profile/base/mistral.pp +++ b/manifests/profile/base/mistral.pp @@ -18,9 +18,9 @@ # # === Parameters # -# [*sync_db*] -# (Optional) Whether to run db sync -# Defaults to true +# [*bootstrap_node*] +# (Optional) The hostname of the node responsible for bootstrapping tasks +# Defaults to hiera('bootstrap_nodeid') # # [*step*] # (Optional) The current step in deployment. See tripleo-heat-templates @@ -28,12 +28,23 @@ # Defaults to hiera('step') # class tripleo::profile::base::mistral ( - $sync_db = true, - $step = hiera('step'), + $bootstrap_node = hiera('bootstrap_nodeid', undef), + $step = hiera('step'), ) { + if $::hostname == downcase($bootstrap_node) { + $sync_db = true + } else { + $sync_db = false + } + + if $step >= 3 and $sync_db { + include ::mistral::db::mysql + } - if $step >= 3 { + if $step >= 4 or ($step >= 3 and $sync_db) { include ::mistral include ::mistral::config + include ::mistral::client + include ::mistral::db::sync } } |