From 6121afcc41fc6e18e39525a0ef24c8349e14f183 Mon Sep 17 00:00:00 2001 From: Carlos Camacho Date: Sun, 17 Jul 2016 21:03:52 +0000 Subject: Fix mistral profile steps Fixing Mistral profile when deploying the service. Change-Id: I942d419be951651e305d01460f394870c30a9878 --- manifests/profile/base/mistral/api.pp | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'manifests/profile/base/mistral/api.pp') diff --git a/manifests/profile/base/mistral/api.pp b/manifests/profile/base/mistral/api.pp index b955c8d..38e1e61 100644 --- a/manifests/profile/base/mistral/api.pp +++ b/manifests/profile/base/mistral/api.pp @@ -23,13 +23,24 @@ # for more details. # Defaults to hiera('step') # +# [*bootstrap_node*] +# (Optional) The hostname of the node responsible for bootstrapping tasks +# Defaults to hiera('bootstrap_nodeid') +# class tripleo::profile::base::mistral::api ( $step = hiera('step'), + $bootstrap_node = hiera('bootstrap_nodeid', undef), ) { + if $::hostname == downcase($bootstrap_node) { + $sync_db = true + } else { + $sync_db = false + } + include ::tripleo::profile::base::mistral - if $step >= 4 { + if $step >= 4 and $sync_db { include ::mistral::api } } -- cgit 1.2.3-korg