From 5cf640051b6d51762450b3116c2839e7b51fb625 Mon Sep 17 00:00:00 2001 From: Logan V Date: Thu, 30 May 2019 14:22:44 -0500 Subject: [PATCH] Switch default console to novnc Change-Id: I5db87e14e86dc4aada19b2933773b50b865445ff --- defaults/main.yml | 2 +- .../notes/novnc-default-console-c800ffd14111108b.yaml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/novnc-default-console-c800ffd14111108b.yaml diff --git a/defaults/main.yml b/defaults/main.yml index a9a0bafa..84263110 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -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" diff --git a/releasenotes/notes/novnc-default-console-c800ffd14111108b.yaml b/releasenotes/notes/novnc-default-console-c800ffd14111108b.yaml new file mode 100644 index 00000000..699324a3 --- /dev/null +++ b/releasenotes/notes/novnc-default-console-c800ffd14111108b.yaml @@ -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.