aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/profile/base/keystone.pp
diff options
context:
space:
mode:
authorGiulio Fidente <gfidente@redhat.com>2016-05-04 15:16:54 +0200
committerGiulio Fidente <gfidente@redhat.com>2016-05-04 15:20:44 +0200
commit172412c0638107db538f1a491513de0836fdc311 (patch)
tree257eb5f28f2f93ddea4a3a09a1087e9e0e14c9f7 /manifests/profile/base/keystone.pp
parentbbe7f42cfdaaf8c5398ffd00b1ca77d2ec7a02bf (diff)
Create dbs in step 3 for the roles
Before the roles we could make the create db operation depend on a 'galera-ready' resource [1]. We can't do it anymore from the role so we need to do create in step 3, when we do sync as well. 1. https://github.com/openstack/tripleo-heat-templates/blob/master/puppet/manifests/overcloud_controller_pacemaker.pp#L382 Change-Id: Id065a9180f1f1a41ab225ec5f755498ec7d9a827
Diffstat (limited to 'manifests/profile/base/keystone.pp')
-rw-r--r--manifests/profile/base/keystone.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/profile/base/keystone.pp b/manifests/profile/base/keystone.pp
index f7674df..2f7a27a 100644
--- a/manifests/profile/base/keystone.pp
+++ b/manifests/profile/base/keystone.pp
@@ -62,7 +62,7 @@ class tripleo::profile::base::keystone (
$step = hiera('step'),
) {
- if $step >= 2 and $sync_db {
+ if $step >= 3 and $sync_db {
include ::keystone::db::mysql
}