Switch default console to novnc

Change-Id: I5db87e14e86dc4aada19b2933773b50b865445ff
This commit is contained in:
Logan V 2019-05-30 14:22:44 -05:00
parent 84fb4b1f0c
commit 5cf640051b
2 changed files with 7 additions and 1 deletions

View File

@ -284,7 +284,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: "{{ (ansible_architecture == 'aarch64') | ternary('serialconsole', 'spice') }}"
nova_console_type: "{{ (ansible_architecture == 'aarch64') | ternary('serialconsole', 'novnc') }}"
# Nova console ssl info, presently only used by novnc console type
nova_console_ssl_dir: "/etc/nova/ssl"

View File

@ -0,0 +1,6 @@
---
upgrade:
- |
The default nova console type has been changed to novnc. Spice is still
supported however due to novnc being more actively maintained it is now
a better default option.