Merge "Fix ceilometer-upgrade params"

This commit is contained in:
Zuul 2020-07-09 19:52:57 +00:00 committed by Gerrit Code Review
commit efb11c1ef6
2 changed files with 7 additions and 1 deletions

View File

@ -4,7 +4,7 @@
# of the KOLLA_BOOTSTRAP variable being set, including empty.
if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
if [[ "${CEILOMETER_DATABASE_TYPE}" == "gnocchi" ]]; then
ceilometer-upgrade "${CEILOMETER_UPGRADE_PARAMS}"
ceilometer-upgrade ${CEILOMETER_UPGRADE_PARAMS}
else
echo "Unsupported database type: ${CEILOMETER_DATABASE_TYPE}"
exit 1

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes Ceilometer deployment and upgrade failing due to wrong mode of
argument passing applied to the ``ceilometer-upgrade`` command.
`LP#1884919 <https://launchpad.net/bugs/1884919>`__