2018-10-26 14:02:21 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Bootstrap and exit if KOLLA_BOOTSTRAP variable is set. This catches all cases
|
|
|
|
# of the KOLLA_BOOTSTRAP variable being set, including empty.
|
|
|
|
if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
|
|
|
|
placement-manage db sync
|
2018-12-19 20:04:49 +00:00
|
|
|
placement-manage db online_data_migrations
|
2018-10-26 14:02:21 +00:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2019-03-13 09:37:03 +00:00
|
|
|
# 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
|
|
|
|
|
2019-12-10 11:51:51 +00:00
|
|
|
. /usr/local/bin/kolla_httpd_setup
|