From 6a44710656f618c1363f0b9372bccd2a6f4d07ec Mon Sep 17 00:00:00 2001 From: Mark Vanderwiel Date: Wed, 10 Sep 2014 11:15:54 -0500 Subject: [PATCH] Separate endpoints for vncserver_listen and vncserver_proxyclient_address * define new endpoint for proxy based on existing vnc endpoint * will be used in Compute nova-common recipe for nova.conf Change-Id: I89298db2461b59ab8038dfc01d42f0eb69a8b58c Partial-Bug: #1367807 --- CHANGELOG.md | 3 +++ attributes/default.rb | 4 ++++ metadata.rb | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a94defb..14af3c49 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 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'