Merge "Prevent using spice console on arm64"

This commit is contained in:
Zuul 2019-01-02 21:34:08 +00:00 committed by Gerrit Code Review
commit 75f6fb85a0
1 changed files with 1 additions and 1 deletions

View File

@ -318,7 +318,7 @@ nova_libvirt_hw_disk_discard: '{{ nova_libvirt_images_rbd_pool is defined | tern
## Nova console
nova_console_agent_enabled: True
# Set the console type. Presently the only options are ["spice", "novnc", "serialconsole"].
nova_console_type: spice
nova_console_type: "{{ (ansible_architecture == 'aarch64') | ternary('serialconsole', 'spice') }}"
# Nova console ssl info, presently only used by novnc console type
nova_console_ssl_dir: "/etc/nova/ssl"