Add missing setting for novncproxy_base_url

This change adds novncproxy_base_url to the ansible template.

Change-Id: I354e30e66ba88321159df45b519314556bba775f
Closes-bug: #1699342
This commit is contained in:
Eric Peterson 2017-06-20 15:30:01 -06:00
parent 7a6d0d567c
commit dc51aac656
1 changed files with 2 additions and 1 deletions

View File

@ -73,6 +73,7 @@ novncproxy_host = {{ api_interface_address }}
novncproxy_port = {{ nova_novncproxy_port }}
vncserver_listen = {{ api_interface_address }}
vncserver_proxyclient_address = {{ api_interface_address }}
novncproxy_base_url = {{ public_protocol }}://{{ kolla_external_fqdn }}:{{ nova_novncproxy_port }}/vnc_auto.html
{% elif nova_console == 'spice' %}
[vnc]
# We have to turn off vnc to use spice
@ -81,7 +82,7 @@ enabled = false
enabled = true
server_listen = {{ api_interface_address }}
server_proxyclient_address = {{ api_interface_address }}
html5proxy_base_url = {{ public_protocol }}://kolla_kubernetes_external_vip:{{ nova_spicehtml5proxy_port }}/spice_auto.html
html5proxy_base_url = {{ public_protocol }}://{{ kolla_external_fqdn }}:{{ nova_spicehtml5proxy_port }}/spice_auto.html
html5proxy_host = {{ api_interface_address }}
html5proxy_port = {{ nova_spicehtml5proxy_port }}
{% endif %}