aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/profile/base/sahara.pp
diff options
context:
space:
mode:
authorJuan Antonio Osorio Robles <jaosorior@redhat.com>2016-08-09 10:27:15 +0300
committerJuan Antonio Osorio Robles <jaosorior@redhat.com>2016-08-09 16:42:06 +0300
commitc99c7862da980119fc9a51d18ab492bc03f00684 (patch)
treefcb8555e1dbae47b247e88e2a4a94db0cd2703d5 /manifests/profile/base/sahara.pp
parentac6c502a69bef7f00633499e2d21b3ec756c21ae (diff)
Only db-sync sahara is included in the bootstrapnode
Currently, sahara's db-sync is run on every node. We should instead run it if we're on the bootstrap node as race conditions may occur and these will cause issues. Change-Id: I5db281caae17402ff198cb4cd46304338d98c52e
Diffstat (limited to 'manifests/profile/base/sahara.pp')
-rw-r--r--manifests/profile/base/sahara.pp19
1 files changed, 16 insertions, 3 deletions
diff --git a/manifests/profile/base/sahara.pp b/manifests/profile/base/sahara.pp
index befb5d3..96d23a6 100644
--- a/manifests/profile/base/sahara.pp
+++ b/manifests/profile/base/sahara.pp
@@ -18,14 +18,27 @@
#
# === Parameters
#
+# [*bootstrap_node*]
+# (Optional) The hostname of the node responsible for bootstrapping tasks
+# Defaults to hiera('bootstrap_nodeid')
+#
# [*step*]
# (Optional) The current step of the deployment
# Defaults to hiera('step')
#
class tripleo::profile::base::sahara (
- $step = hiera('step'),
+ $bootstrap_node = hiera('bootstrap_nodeid', undef),
+ $step = hiera('step'),
) {
- if $step >= 4 {
- include ::sahara
+ if $::hostname == downcase($bootstrap_node) {
+ $sync_db = true
+ } else {
+ $sync_db = false
+ }
+
+ if $step >= 4 or ($step >= 3 and $sync_db){
+ class { '::sahara':
+ sync_db => $sync_db,
+ }
}
}