Merge "nova: unset cpu_model on aarch64"

This commit is contained in:
Zuul 2024-02-23 18:27:39 +00:00 committed by Gerrit Code Review
commit 8bc99f3ef1
1 changed files with 4 additions and 0 deletions

View File

@ -56,6 +56,10 @@ function configure_nova_hypervisor {
# arm64-specific configuration
if is_arch "aarch64"; then
iniset $NOVA_CONF libvirt cpu_mode "host-passthrough"
# NOTE(mnaser): We cannot have `cpu_model` set if the `cpu_mode` is
# set to `host-passthrough`, or `nova-compute` refuses to
# start.
inidelete $NOVA_CONF libvirt cpu_model
fi
if isset ENABLE_FILE_INJECTION; then