From 0e530b489d841af0bb83f25af5a8e8f0ccbd8f51 Mon Sep 17 00:00:00 2001 From: marios Date: Tue, 17 Jan 2017 15:01:06 +0200 Subject: [PATCH] Adds the nova db online data migrations to the list of db sync We aren't currently running the online_data_migrations nova db sync in puppet-stack-config Change-Id: Ib7a495491e8fa16ab62a1c415cef30ee18664b35 Related-Bug: 1656791 Depends-On: Ibb119c280b5b6d07db06a63dd9efcc2526355f5f (cherry picked from commit bbbb9081018b8d5de6772ad55175ef444c2e855b) --- elements/puppet-stack-config/puppet-stack-config.pp | 1 + 1 file changed, 1 insertion(+) diff --git a/elements/puppet-stack-config/puppet-stack-config.pp b/elements/puppet-stack-config/puppet-stack-config.pp index 259fdf24e..06423f673 100644 --- a/elements/puppet-stack-config/puppet-stack-config.pp +++ b/elements/puppet-stack-config/puppet-stack-config.pp @@ -25,6 +25,7 @@ Exec<| title == 'keystone-manage db_sync' |> { refreshonly => false } Exec<| title == 'glance-manage db_sync' |> { refreshonly => false } Exec<| title == 'nova-db-sync-api' |> { refreshonly => false } Exec<| title == 'nova-db-sync' |> { refreshonly => false } +Exec<| title == 'nova-db-online-data-migrations' |> { refreshonly => false } Exec<| title == 'heat-dbsync' |> { refreshonly => false } Exec<| title == 'ceilometer-dbsync' |> { refreshonly => false } Exec<| title == 'aodh-db-sync' |> { refreshonly => false }