diff --git a/CHANGELOG.md b/CHANGELOG.md index 70eaeab5..37ae0358 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ This file is used to list changes made in each version of cookbook-openstack-common. +## 10.2.0 +* Separate endpoints for vncserver_listen and vncserver_proxyclient_address + ## 10.1.0 * Adding identity admin bind host endpoint to allow flexibility and consistency * Fix logging.conf No section error diff --git a/attributes/default.rb b/attributes/default.rb index 2a43ee34..d314cd87 100644 --- a/attributes/default.rb +++ b/attributes/default.rb @@ -268,6 +268,10 @@ default['openstack']['endpoints']['compute-vnc']['port'] = nil default['openstack']['endpoints']['compute-vnc']['path'] = nil default['openstack']['endpoints']['compute-vnc']['bind_interface'] = nil +# The OpenStack Compute (Nova) vnc proxy endpoint +default['openstack']['endpoints']['compute-vnc-proxy-bind']['host'] = node['openstack']['endpoints']['compute-vnc-bind']['host'] +default['openstack']['endpoints']['compute-vnc-proxy-bind']['bind_interface'] = node['openstack']['endpoints']['compute-vnc-bind']['bind_interface'] + # ******************** OpenStack Network Endpoints **************************** # The OpenStack Network (Neutron) API endpoint. diff --git a/metadata.rb b/metadata.rb index 11d721fe..1f9f4a7d 100755 --- a/metadata.rb +++ b/metadata.rb @@ -4,7 +4,7 @@ maintainer_email 'cookbooks@lists.tfoundry.com' license 'Apache 2.0' description 'Common OpenStack attributes, libraries and recipes.' long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) -version '10.1.0' +version '10.2.0' recipe 'openstack-common', 'Installs/Configures common recipes' recipe 'openstack-common::set_endpoints_by_interface', 'Set endpoints by interface'