From f8dd01ebdc2c6dea818f9741083d064ab453a032 Mon Sep 17 00:00:00 2001 From: Jonathan Rosser Date: Thu, 6 Oct 2022 17:38:02 +0100 Subject: [PATCH] Clarify nova serial proxy bind address This should be nova_management_address which by default is equivalent to ansible_host, but the use of ansible_host is confusing when the whole of the rest of os_nova uses nova_managment_address for the address to bind services to. Change-Id: Ie34acf0115d8e89e2888952e1c2d3dc03a284aff --- defaults/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defaults/main.yml b/defaults/main.yml index 58c1f453..71d5816a 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -250,7 +250,7 @@ nova_serialconsoleproxy_port: 6083 nova_serialconsoleproxy_port_range: 10000:20000 nova_serialconsoleproxy_base_uri: "{{ nova_serialconsoleproxy_proto }}://{{ external_lb_vip_address }}:{{ nova_serialconsoleproxy_port }}" nova_serialconsoleproxy_base_url: "{{ nova_serialconsoleproxy_base_uri }}" -nova_serialconsoleproxy_serialconsole_proxyserver_proxyclient_address: "{{ ansible_host }}" +nova_serialconsoleproxy_serialconsole_proxyserver_proxyclient_address: "{{ nova_management_address }}" ## Nova metadata nova_metadata_proxy_enabled: "{{ nova_network_services[nova_network_type]['metadata_proxy_enabled'] | bool }}"