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
This commit is contained in:
Chris Beukers
2017-08-31 09:19:55 +02:00
parent 38e674c5cc
commit 2f3196e462

View File

@@ -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