aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/profile/base/cinder/api.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/profile/base/cinder/api.pp')
-rw-r--r--manifests/profile/base/cinder/api.pp19
1 files changed, 11 insertions, 8 deletions
diff --git a/manifests/profile/base/cinder/api.pp b/manifests/profile/base/cinder/api.pp
index a2da25f..370b402 100644
--- a/manifests/profile/base/cinder/api.pp
+++ b/manifests/profile/base/cinder/api.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,14 +28,17 @@
# Defaults to hiera('step')
#
class tripleo::profile::base::cinder::api (
- $sync_db = true,
- $step = hiera('step'),
+ $bootstrap_node = hiera('bootstrap_nodeid', undef),
+ $step = hiera('step'),
) {
-
- class { '::tripleo::profile::base::cinder':
- pacemaker_master => $sync_db,
+ if $::hostname == downcase($bootstrap_node) {
+ $sync_db = true
+ } else {
+ $sync_db = false
}
+ include ::tripleo::profile::base::cinder
+
if $step >= 3 and $sync_db {
include ::cinder::db::mysql
}