Prevent using spice console on arm64

Currently there is no support for vnc or spice consoles on
arm64 architecture.  Set the default to be serialconsole.

Change-Id: Idd8933cd54194093e635b3e0ba201df275b6f74f
This commit is contained in:
Paul Martin 2018-12-05 12:58:42 +00:00
parent b656ffa8f7
commit 0087026132

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"