Merge "Apply Glance database migration"
This commit is contained in:
commit
a4c5f2644e
@ -7,3 +7,21 @@ if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
|
||||
glance-manage db_load_metadefs
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Migrate database and exit if KOLLA_UPGRADE variable is set. This catches all cases
|
||||
# of the KOLLA_UPGRADE variable being set, including empty.
|
||||
if [[ "${!KOLLA_UPGRADE[@]}" ]]; then
|
||||
if [[ "${!GLANCE_DB_EXPAND[@]}" ]]; then
|
||||
echo "Expanding database"
|
||||
glance-manage db expand
|
||||
fi
|
||||
if [[ "${!GLANCE_DB_MIGRATE[@]}" ]]; then
|
||||
echo "Migrating database"
|
||||
glance-manage db migrate
|
||||
fi
|
||||
if [[ "${!GLANCE_DB_CONTRACT[@]}" ]]; then
|
||||
echo "Contracting database"
|
||||
glance-manage db contract
|
||||
fi
|
||||
exit 0
|
||||
fi
|
||||
|
@ -0,0 +1,5 @@
|
||||
---
|
||||
|
||||
features:
|
||||
- |
|
||||
Implement Glance zero-downtime upgrade logic.
|
Loading…
x
Reference in New Issue
Block a user