Merge "Switch default console to novnc"

This commit is contained in:
Zuul 2019-07-13 00:27:05 +00:00 committed by Gerrit Code Review
commit 35e35da176
2 changed files with 7 additions and 1 deletions

View File

@ -281,7 +281,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.