From 8412887491cada67fa2e6c4ae146cc5bd75973fb Mon Sep 17 00:00:00 2001 From: Alex-Welsh Date: Tue, 28 Nov 2023 13:08:58 +0000 Subject: [PATCH] Sync only local cell in nova bootstrap & upgrade Added the --local_cell argument to nova db sync commands during bootstrap and upgrade. This was previously thought to have no effect [1], but has since been discovered to fail when rotating the nova database password. [1] https://opendev.org/openstack/kolla-ansible/src/branch/master/ansible/roles/nova/tasks/bootstrap_service.yml#L2-L3 Depends-On: https://review.opendev.org/c/openstack/kolla-ansible/+/904086 Closes-Bug: #2045558 Change-Id: Ic64eb51325b3503a14ebab9b9ff2f4d9caec734a (cherry picked from commit de1487f05187387aea3f113dcbb6926734b1ce6b) --- docker/nova/nova-api/extend_start.sh | 4 ++-- .../notes/nova-sync-local-cell-8e3258f4b410d25c.yaml | 7 +++++++ 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 releasenotes/notes/nova-sync-local-cell-8e3258f4b410d25c.yaml diff --git a/docker/nova/nova-api/extend_start.sh b/docker/nova/nova-api/extend_start.sh index 65d759d2fb..40210f81c2 100644 --- a/docker/nova/nova-api/extend_start.sh +++ b/docker/nova/nova-api/extend_start.sh @@ -8,14 +8,14 @@ # of the KOLLA_BOOTSTRAP variable being set, including empty. if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then nova-manage api_db sync - nova-manage db sync + nova-manage db sync --local_cell nova-manage db online_data_migrations exit 0 fi if [[ "${!KOLLA_UPGRADE[@]}" ]]; then nova-manage api_db sync - nova-manage db sync + nova-manage db sync --local_cell exit 0 fi diff --git a/releasenotes/notes/nova-sync-local-cell-8e3258f4b410d25c.yaml b/releasenotes/notes/nova-sync-local-cell-8e3258f4b410d25c.yaml new file mode 100644 index 0000000000..0da2cde3ee --- /dev/null +++ b/releasenotes/notes/nova-sync-local-cell-8e3258f4b410d25c.yaml @@ -0,0 +1,7 @@ +--- +fixes: + - | + The Nova API container extended startup script has been updated to only + sync the local Nova cell. This resolves an error that would occur when the + Nova database password changes. More details can be found on `this bug + report `__.