From 2f3196e4628c03b4ccc7c88843ba3be68e01d04e Mon Sep 17 00:00:00 2001 From: Chris Beukers Date: Thu, 31 Aug 2017 09:19:55 +0200 Subject: [PATCH] Adding serial console support The nova serial console feature uses portnumber 6083 by default. this port needs to be accessable for client programs that want to connect to the serial console as wel as the horizon webinterface to connect to the serial console. The added definitions add this port as a group_var Change-Id: I30f91b20b195e578647ea2a0cfe087bdac2b5b6b --- group_vars/all/nova.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/group_vars/all/nova.yml b/group_vars/all/nova.yml index 50936c3d9c..001b8d0bf1 100644 --- a/group_vars/all/nova.yml +++ b/group_vars/all/nova.yml @@ -30,7 +30,8 @@ nova_keystone_auth_plugin: password nova_console_type: spice nova_novncproxy_port: 6080 nova_spice_html5proxy_base_port: 6082 -nova_console_port: "{% if nova_console_type == 'spice' %}{{ nova_spice_html5proxy_base_port }}{% else %}{{ nova_novncproxy_port }}{% endif %}" +nova_serialconsoleproxy_port: 6083 +nova_console_port: "{% if nova_console_type == 'spice' %}{{ nova_spice_html5proxy_base_port }}{% elif nova_console_type == 'novnc' %}{{ nova_novncproxy_port }}{% else %}{{ nova_serialconsoleproxy_port }} {% endif %}" # These are here rather than in nova_all because # both the os_ceilometer and os_nova roles require them