Fix typo with vncproxy_host for ::nova::compute
This commit fixes an issue where nova::compute was defaulting to 127.0.0.1:6080 even though the public_ipaddress was passed. Change-Id: Ibb5247d715247a8a2c519a08c3af1a8ff79304a2 Signed-off-by: Paul Belanger <paul.belanger@polybeacon.com>
This commit is contained in:
@@ -358,7 +358,7 @@ class openstack::all (
|
||||
enabled => $enabled,
|
||||
vnc_enabled => $vnc_enabled,
|
||||
vncserver_proxyclient_address => $internal_address_real,
|
||||
vncproxy_host => $vncproxy_host,
|
||||
vncproxy_host => $vncproxy_host_real,
|
||||
force_config_drive => $force_config_drive
|
||||
}
|
||||
|
||||
|
||||
@@ -355,7 +355,7 @@ describe 'openstack::all' do
|
||||
:enabled => true,
|
||||
:vnc_enabled => true,
|
||||
:vncserver_proxyclient_address => '10.0.0.1',
|
||||
:vncproxy_host => false
|
||||
:vncproxy_host => '10.0.0.1'
|
||||
)
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user