Merge "Separate placement DB sync and data migrations"

This commit is contained in:
Zuul 2019-03-15 15:31:38 +00:00 committed by Gerrit Code Review
commit 760fffacad
1 changed files with 12 additions and 0 deletions

View File

@ -8,6 +8,18 @@ if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
exit 0
fi
# DB synchronisation. To be executed prior to upgrading services.
if [[ "${!KOLLA_UPGRADE[@]}" ]]; then
placement-manage db sync
exit 0
fi
# Online data migrations. To be executed after upgrading services.
if [[ "${!KOLLA_OSM[@]}" ]]; then
placement-manage db online_data_migrations
exit 0
fi
# NOTE(pbourke): httpd will not clean up after itself in some cases which
# results in the container not being able to restart. (bug #1489676, 1557036)
if [[ "${KOLLA_BASE_DISTRO}" =~ debian|ubuntu ]]; then