diff --git a/lib/nova b/lib/nova index ca9a6c7f50..d5db5eaeb7 100644 --- a/lib/nova +++ b/lib/nova @@ -85,9 +85,6 @@ METADATA_SERVICE_PORT=${METADATA_SERVICE_PORT:-8775} # NOTE: Set ``FORCE_CONFIG_DRIVE="False"`` to turn OFF config drive FORCE_CONFIG_DRIVE=${FORCE_CONFIG_DRIVE:-"False"} -# Option to initialize CellsV2 environment -NOVA_CONFIGURE_CELLSV2=$(trueorfalse False NOVA_CONFIGURE_CELLSV2) - # Nova supports pluggable schedulers. The default ``FilterScheduler`` # should work in most cases. SCHEDULER=${SCHEDULER:-filter_scheduler} @@ -681,9 +678,7 @@ function init_nova { if is_service_enabled $DATABASE_BACKENDS && is_service_enabled n-api; then # (Re)create nova databases recreate_database nova - if [ "$NOVA_CONFIGURE_CELLSV2" != "False" ]; then - recreate_database nova_api_cell0 - fi + recreate_database nova_api_cell0 # Migrate nova database. If "nova-manage cell_v2 simple_cell_setup" has # been run this migrates the "nova" and "nova_api_cell0" database. diff --git a/stack.sh b/stack.sh index 1d01fdad7f..9c63f5feac 100755 --- a/stack.sh +++ b/stack.sh @@ -1385,7 +1385,7 @@ check_libs_from_git # ---------------------- # Do this late because it requires compute hosts to have started -if is_service_enabled n-api && [ "$NOVA_CONFIGURE_CELLSV2" == "True" ]; then +if is_service_enabled n-api; then create_cell fi